├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md └── get-location.m /.gitignore: -------------------------------------------------------------------------------- 1 | get-location 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindes/get-location/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindes/get-location/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindes/get-location/HEAD/README.md -------------------------------------------------------------------------------- /get-location.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindes/get-location/HEAD/get-location.m --------------------------------------------------------------------------------