diff scripts/control/system/packedform.m @ 6522:475c83367a0e

[project @ 2007-04-12 15:41:58 by jwe]
author jwe
date Thu, 12 Apr 2007 15:42:02 +0000
parents 4c8a2e4e0717
children 93c65f2a5668
line wrap: on
line diff
--- a/scripts/control/system/packedform.m
+++ b/scripts/control/system/packedform.m
@@ -17,8 +17,8 @@
 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 ## 02110-1301 USA.
 
-save_var = page_screen_output;
-page_screen_output = 1;
+save_var = page_screen_output ();
+page_screen_output (1);
 disp("Description of system data structure:")
 disp("A linear system is stored in a structure, and may be represented in")
 disp("ss (state space), tf (transfer function),  and/or zp (zero-pole-gain)")
@@ -93,4 +93,4 @@
 disp("  sysdimensions   sysgetsignals   syssetsignals   sysgettype")
 disp("  zp    ")
 disp("to create/access internal variables.  ");
-page_screen_output = save_var;
+page_screen_output (save_var);