changeset 33527:d10bed2b2cb4 bytecode-interpreter

maint: Merge default to bytecode interpreter.
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Fri, 03 May 2024 02:01:58 -0400
parents 6973c90d79e7 (current diff) 57bbf1e9b4de (diff)
children 4aec1230dd8f
files
diffstat 1 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ode/ode23s.m	Fri May 03 01:55:55 2024 -0400
+++ b/scripts/ode/ode23s.m	Fri May 03 02:01:58 2024 -0400
@@ -277,9 +277,9 @@
 %! ## Demo function: stiff Van Der Pol equation
 %! fcn = @(t,y) [y(2); 10*(1-y(1)^2)*y(2)-y(1)];
 %! ## Calling ode23s method
-%! tic ()
+%! tmr = tic ();
 %! [vt, vy] = ode23s (fcn, [0 20], [2 0]);
-%! toc ()
+%! toc (tmr);
 %! ## Plotting the result
 %! plot (vt,vy(:,1),'-o');
 
@@ -289,9 +289,9 @@
 %! ## Calling ode23s method
 %! odeopts = odeset ("Jacobian", @(t,y) [0 1; -20*y(1)*y(2)-1, 10*(1-y(1)^2)],
 %!                   "InitialStep", 1e-3)
-%! tic ()
+%! tmr = tic ();
 %! [vt, vy] = ode23s (fcn, [0 20], [2 0], odeopts);
-%! toc ()
+%! toc (tmr);
 %! ## Plotting the result
 %! plot (vt,vy(:,1),'-o');
 
@@ -300,9 +300,9 @@
 %! fcn = @(t,y) [y(2); 100*(1-y(1)^2)*y(2)-y(1)];
 %! ## Calling ode23s method
 %! odeopts = odeset ("InitialStep", 1e-4);
-%! tic ()
+%! tmr = tic ();
 %! [vt, vy] = ode23s (fcn, [0 200], [2 0]);
-%! toc ()
+%! toc (tmr);
 %! ## Plotting the result
 %! plot (vt,vy(:,1),'-o');
 
@@ -312,9 +312,9 @@
 %! ## Calling ode23s method
 %! odeopts = odeset ("Jacobian", @(t,y) [0 1; -200*y(1)*y(2)-1, 100*(1-y(1)^2)],
 %!                   "InitialStep", 1e-4);
-%! tic ()
+%! tmr = tic ();
 %! [vt, vy] = ode23s (fcn, [0 200], [2 0], odeopts);
-%! toc ()
+%! toc (tmr);
 %! ## Plotting the result
 %! plot (vt,vy(:,1),'-o');