mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
439 B
Plaintext
22 lines
439 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# matlab
|
|
|
|
> Numerical computation environment by MathWorks.
|
|
> More information: <https://www.mathworks.com/help/matlab/matlab_env/startup-options/>.
|
|
|
|
- Run without splash screen during startup:
|
|
|
|
`matlab -nosplash`
|
|
|
|
- Execute a MATLAB statement:
|
|
|
|
`matlab -r "{{matlab_statement}}"`
|
|
|
|
- Run a MATLAB script:
|
|
|
|
`matlab -r "run({{path/to/script.m}})"`
|