From a31b7d1bb5be876729e4e7728a78f417cdf1b3dd Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 24 Jan 2018 15:46:56 -0500 Subject: [PATCH] [Matlab] Remove spurious arguments from scripts for running examples --- samples/matlab/run_examples.m | 12 ++++++------ samples/matlab/test_examples.m | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/samples/matlab/run_examples.m b/samples/matlab/run_examples.m index 63d0a68cf..2939196b8 100644 --- a/samples/matlab/run_examples.m +++ b/samples/matlab/run_examples.m @@ -1,15 +1,15 @@ % runs all examples -equil(0); +equil(); disp('press any key to continue'); pause -isentropic(0); +isentropic(); disp('press any key to continue'); pause -reactor1(0); +reactor1(); disp('press any key to continue'); pause -reactor2(0); +reactor2(); disp('press any key to continue'); pause surfreactor; @@ -21,10 +21,10 @@ pause; rankine(300.0, 2.0*oneatm, 0.8, 0.7); disp('press any key to continue'); pause; -prandtl1(0); +prandtl1(); disp('press any key to continue'); pause -prandtl2(0); +prandtl2(); disp('press any key to continue'); pause flame1 diff --git a/samples/matlab/test_examples.m b/samples/matlab/test_examples.m index 6f59901c6..b1c6bf753 100644 --- a/samples/matlab/test_examples.m +++ b/samples/matlab/test_examples.m @@ -1,12 +1,12 @@ % runs selected examples without pausing -equil(0); -isentropic(0); -reactor1(0); -reactor2(0); +equil(); +isentropic(); +reactor1(); +reactor2(); surfreactor; periodic_cstr; rankine(300.0, 2.0*oneatm, 0.8, 0.7); -prandtl1(0); +prandtl1(); flame1; catcomb; exit;