HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

matlab — Numerical computation environment by MathWorks. More information: <https://www.mathworks.com/help/ma

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandnumericalmatlabclienvironmentmoremathworkscomputation

Problem

How to use the matlab command: Numerical computation environment by MathWorks. More information: <https://www.mathworks.com/help/matlab/matlab_env/startup-options/>.

Solution

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}})"

Code Snippets

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}})"

Context

tldr-pages: common/matlab

Revisions (0)

No revisions yet.