|
From: <par...@us...> - 2012-09-22 10:26:16
|
Revision: 11076
http://octave.svn.sourceforge.net/octave/?rev=11076&view=rev
Author: paramaniac
Date: 2012-09-22 10:26:10 +0000 (Sat, 22 Sep 2012)
Log Message:
-----------
control: fix function names
Modified Paths:
--------------
trunk/octave-forge/main/control/inst/step.m
Modified: trunk/octave-forge/main/control/inst/step.m
===================================================================
--- trunk/octave-forge/main/control/inst/step.m 2012-09-22 10:25:04 UTC (rev 11075)
+++ trunk/octave-forge/main/control/inst/step.m 2012-09-22 10:26:10 UTC (rev 11076)
@@ -56,7 +56,7 @@
## Created: October 2009
## Version: 0.2
-function [y_r, t_r, x_r] = step2 (varargin)
+function [y_r, t_r, x_r] = step (varargin)
if (nargin == 0)
print_usage ();
@@ -77,7 +77,7 @@
endfor
endif
- [y, t, x] = __time_response_2__ ("step", varargin, sysname, ! nargout);
+ [y, t, x] = __time_response__ ("step", varargin, sysname, ! nargout);
if (nargout)
y_r = y{1};
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|