<< what | Functions manager |
which(function_name) |
p = which(function_name) |
c = which(function_name, '-all') |
m = which(function_name, '-module') |
a string: function name.
a string: path of the function or built-in
a cell of strings: paths of the function or built-in.
a cell of strings: name of the modules where function or built-in is available.
which returns the path of a function or a built-in.
which('cos')
p = which('cos')
c = which('cos', '-all')
m = which('cos', '-module')
what.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET