From 4782f8417db835bc7c32ee4ccbaca7cf172fc14a Mon Sep 17 00:00:00 2001 From: Jay Piamjariyakul Date: Wed, 14 Oct 2020 23:41:36 +0100 Subject: [PATCH] matlab: add page (#4656) --- pages/common/matlab.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/matlab.md diff --git a/pages/common/matlab.md b/pages/common/matlab.md new file mode 100644 index 0000000000..16e3db647a --- /dev/null +++ b/pages/common/matlab.md @@ -0,0 +1,16 @@ +# matlab + +> Numerical computation environment by MathWorks. +> More information: . + +- 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}})"`