Skip to content

Commit

Permalink
Minor fixes to help texts for Chebfun overloads of built-in ODE solvers.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaustin141 committed Aug 3, 2023
1 parent bf312ad commit acf1128
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion @chebfun/ode113.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function varargout = ode113(varargin)
%ODE113 Solve stiff differential equations and DAEs. Output a CHEBFUN.
%ODE113 Solve non-stiff differential equations. Output a CHEBFUN.
% Y = CHEBFUN.ODE113(ODEFUN, D, ...) applies the standard ODE113 method to
% solve an initial-value problem on the domain D. The result is then converted
% to a piecewise-defined CHEBFUN with one column per solution component.
Expand Down
2 changes: 1 addition & 1 deletion @chebfun/ode45.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function varargout = ode45(varargin)
%ODE45 Solve stiff differential equations and DAEs. Output a CHEBFUN.
%ODE45 Solve non-stiff differential equations. Output a CHEBFUN.
% Y = CHEBFUN.ODE45(ODEFUN, D, ...) applies the standard ODE45 method to
% solve an initial-value problem on the domain D. The result is then converted
% to a piecewise-defined CHEBFUN with one column per solution component.
Expand Down
4 changes: 2 additions & 2 deletions @chebfun/ode78.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
function varargout = ode78(varargin)
%ODE78 Solve stiff differential equations and DAEs. Output a CHEBFUN.
%ODE78 Solve non-stiff differential equations. Output a CHEBFUN.
% Y = CHEBFUN.ODE78(ODEFUN, D, ...) applies the standard ODE78 method to
% solve an initial-value problem on the domain D. The result is then converted
% to a piecewise-defined CHEBFUN with one column per solution component.
%
% CHEBFUN.ODE78 has the same calling sequence as Matlab's standard ODE45.
% CHEBFUN.ODE78 has the same calling sequence as Matlab's standard ODE78.
%
% One can also write [T, Y] = ODE78(...), in which case T is a linear CHEBFUN
% on the domain D.
Expand Down
4 changes: 2 additions & 2 deletions @chebfun/ode89.m
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
function varargout = ode89(varargin)
%ODE89 Solve stiff differential equations and DAEs. Output a CHEBFUN.
%ODE89 Solve non-stiff differential equations. Output a CHEBFUN.
% Y = CHEBFUN.ODE89(ODEFUN, D, ...) applies the standard ODE89 method to
% solve an initial-value problem on the domain D. The result is then converted
% to a piecewise-defined CHEBFUN with one column per solution component.
%
% CHEBFUN.ODE89 has the same calling sequence as Matlab's standard ODE45.
% CHEBFUN.ODE89 has the same calling sequence as Matlab's standard ODE89.
%
% One can also write [T, Y] = ODE89(...), in which case T is a linear CHEBFUN
% on the domain D.
Expand Down

0 comments on commit acf1128

Please sign in to comment.