Skip to content

Commit beec86c

Browse files
Fix broken links
1 parent 16ff93c commit beec86c

File tree

11 files changed

+24
-21
lines changed

11 files changed

+24
-21
lines changed

toolbox/+otp/+ascherlineardae/AscherLinearDAEProblem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
% The start and final time.
5656
% y0 : numeric(2, 1)
5757
% The initial condition.
58-
% parameters : AscherLinearDAEParameters
58+
% parameters : otp.ascherlineardae.AscherLinearDAEParameters
5959
% The parameters.
6060
[email protected]('Ascher Linear DAE', 2, timeSpan, y0, parameters);
6161
end

toolbox/+otp/+brusselator/BrusselatorProblem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
% The start and final time.
5151
% y0 : numeric(2, 1)
5252
% The initial conditions.
53-
% parameters : BrusselatorParameters
53+
% parameters : otp.brusselator.BrusselatorParameters
5454
% The parameters.
5555

5656
[email protected]('Brusselator', 2, timeSpan, y0, parameters);

toolbox/+otp/+cusp/CUSPProblem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
% The start and final time.
8787
% y0 : numeric(:, 1)
8888
% The initial conditions.
89-
% parameters : CUSPParameters
89+
% parameters : otp.cusp.CUSPParameters
9090
% The parameters.
9191

9292
[email protected]('CUSP', [], timeSpan, y0, parameters);

toolbox/+otp/+linear/LinearProblem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
% The start and final time.
4949
% y0 : numeric(:, 1)
5050
% The initial conditions.
51-
% parameters : LinearParameters
51+
% parameters : otp.linear.LinearParameters
5252
% The parameters.
5353

5454
[email protected]('Linear', [], timeSpan, y0, parameters);

toolbox/+otp/+lorenz63/Lorenz63Problem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
% The start and final time.
4444
% y0 : numeric(3, 1)
4545
% The initial conditions.
46-
% parameters : Lorenz63Parameters
46+
% parameters : otp.lorenz63.Lorenz63Parameters
4747
% The parameters.
4848

4949
[email protected]('Lorenz Equations', 3, timeSpan, y0, parameters);

toolbox/+otp/+lorenz96/Lorenz96Problem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
% The start and final time.
4545
% y0 : numeric(:, 1)
4646
% The initial conditions.
47-
% parameters : Lorenz96Parameters
47+
% parameters : otp.lorenz96.Lorenz96Parameters
4848
% The parameters.
4949

5050
[email protected]('Lorenz 96', [], timeSpan, y0, parameters);

toolbox/+otp/+oregonator/OregonatorProblem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
% The start and final time.
5454
% y0 : numeric(3, 1)
5555
% The initial conditions.
56-
% parameters : OregonatorParameters
56+
% parameters : otp.oregonator.OregonatorParameters
5757
% The parameters.
5858

5959
[email protected]('Oregonator', 3, timeSpan, y0, parameters);

toolbox/+otp/+protherorobinson/ProtheroRobinsonProblem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
% The start and final time.
3636
% y0 : numeric(:, 2)
3737
% The initial conditions.
38-
% parameters : ProtheroRobinsonParameters
38+
% parameters : otp.protherorobinson.ProtheroRobinsonParameters
3939
% The parameters.
4040

4141
[email protected]('Prothero–Robinson', [], timeSpan, y0, parameters);

toolbox/+otp/+robertson/+presets/ROBER.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
classdef ROBER < otp.robertson.RobertsonProblem
2-
% The Robertson configuration from :cite:p:`HW96` (p. 144). This differs from :class:`Canonical` only in the time
3-
% span which is extended to $[0, 10^{11}]$. This presents a challenge for numerical integrators to preserve solution
4-
% positivity.
2+
% The Robertson configuration from :cite:p:`HW96` (p. 144). This differs from
3+
% :class:`otp.robertson.presets.Canonical` only in the time span which is extended to $[0, 10^{11}]$. This presents
4+
% a challenge for numerical integrators to preserve solution positivity.
55

66
methods
77
function obj = ROBER

toolbox/+otp/+robertson/RobertsonProblem.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
% The start and final time.
5757
% y0 : numeric(3, 1)
5858
% The initial conditions.
59-
% parameters : RobertsonParameters
59+
% parameters : otp.robertson.RobertsonParameters
6060
% The parameters.
6161

6262
[email protected]('Robertson', 3, timeSpan, y0, parameters);

0 commit comments

Comments
 (0)