MatLang

Matlab's language functions written in Julia

MIT License

Stars
9
Committers
3

MatLang

API for Matlab's language core functions

Documentation

Installation

Add the package

using Pkg
Pkg.add("MatLang")

Usage

Use the package:

using MatLang

List of implemented Functions

Language_Fundamentals :

To see the full progress see this link: https://github.com/juliamatlab/MatLang/projects

The full list of the functions that will be implemented in the future can be found here or here

Development

clone the project in your usual way, or using the following command which clones the project in .julia\dev\MatLang

] dev MatLang

cd to cloned package. if you used dev command, run the following:

cd("$(homedir())\\.julia\\dev\\MatLang")

Activate the package:

] activate .

Set developing variable to true in the files in test and usage folder.

developing = true

Set developing variable to false before committing (for a successful CI build).

The package uses Revise for quick testing without the need for restarting.