Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aminya/mlxtools.m
Convert mlx files to m files and vice versa
https://github.com/aminya/mlxtools.m
conversion convert extension file m matlab mlx
Last synced: 5 days ago
JSON representation
Convert mlx files to m files and vice versa
- Host: GitHub
- URL: https://github.com/aminya/mlxtools.m
- Owner: aminya
- License: other
- Created: 2020-01-25T06:28:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-25T06:38:46.000Z (almost 5 years ago)
- Last Synced: 2024-10-15T02:18:46.596Z (2 months ago)
- Topics: conversion, convert, extension, file, m, matlab, mlx
- Language: MATLAB
- Size: 4.88 KB
- Stars: 0
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mlxTools.m
Convert mlx files to m files and vice versa`mlx2m(method, rename, foldersWithSubFolder, foldersWithoutSubFolder)`
`m2mlx(method, rename, foldersWithSubFolder, foldersWithoutSubFolder)`
## Arguments
- method: can be `"all","all_exclude","specific","GUI_all","GUI_specific"`
- folders (optional):
- if method is `"all_exclude"`: pass the folder names that should be excluded
- if method is `"specific"`: pass the folder names that should be included.
- 3rd argument are the folders that their subfolders are considered
- 4th argument are the folders that their subfolders are ignored.Folders specified can have a relative as well as absolute path.
## Example
Choose the method, and run the function.
```matlab
mlx2m("all", true);
```Pass a 2nd and 3rd input to include/exclude specific folders if you chose "all_exclude" or "specific"
```matlab
mlx2m("specified", true, ["Functions"],[pwd]);
mlx2m("specified", true, ["Functions"],[]);
mlx2m("exclude", true, ["Functions"],[]);
```# License
This is written as part of my Master's thesis and it is licensed under Apache V2, so cite this paper if you use it:
```
A. Yahyaabadi, P. Ferguson, ”An intelligent multi-vehicle drone testbed for space systems and remote sensing verification,” in Canadian Aeronautics and Space Institute (CASI) ASTRO, Canada, 2019
```
In case of changes, either make pull requests to this repository or state the changes.