Skip to content

Commit d393833

Browse files
Fix Lorenz96 problem typos
1 parent c8149c8 commit d393833

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

toolbox/+otp/+lorenz96/+presets/Canonical.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
methods
66
function obj = Canonical(varargin)
7-
% Create the Canonical Lorenz '96 problem object.
7+
% Create the canonical Lorenz '96 problem object.
88
%
99
% Parameters
1010
% ----------

toolbox/+otp/+lorenz96/+presets/PopovSandu.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
methods
1313
function obj = PopovSandu(varargin)
14-
% Create the PopovSandu Lorenz '96 problem object.
14+
% Create the Popov–Sandu Lorenz '96 problem object.
1515
%
1616
% Parameters
1717
% ----------

toolbox/+otp/+lorenz96/Lorenz96Problem.m

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
%
1313
% Notes
1414
% -----
15-
% +---------------------+---------------------------------------------+
16-
% | Type | ODE |
17-
% +---------------------+---------------------------------------------+
18-
% | Number of Variables | $N$ for any postive integer four or greater |
19-
% +---------------------+---------------------------------------------+
20-
% | Stiff | no |
21-
% +---------------------+---------------------------------------------+
15+
% +---------------------+----------------------------------------------+
16+
% | Type | ODE |
17+
% +---------------------+----------------------------------------------+
18+
% | Number of Variables | $N$ for any positive integer four or greater |
19+
% +---------------------+----------------------------------------------+
20+
% | Stiff | no |
21+
% +---------------------+----------------------------------------------+
2222
%
2323
% Example
2424
% -------
@@ -78,7 +78,7 @@
7878
% localization in Data Assimilation. This is heavily tied to this
7979
% problem.
8080

81-
obj.DistanceFunction = @(t, y, i, j) otp.lorenz96.distanceFunction(t, y, i, j);
81+
obj.DistanceFunction = @otp.lorenz96.distanceFunction;
8282
end
8383

8484
function sol = internalSolve(obj, varargin)

0 commit comments

Comments
 (0)