Skip to content

Commit 0a65855

Browse files
committed
constructor for lorenz 63 presets
1 parent cce57cb commit 0a65855

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@
1616
% - ``rho`` – Value of $\rho$.
1717
% - ``beta`` – Value of $\beta$.
1818
%
19-
% Returns
20-
% -------
21-
% obj : Lorenz63Problem
22-
% The constructed problem.
2319

2420
p = inputParser;
2521
p.addParameter('sigma', 10);

toolbox/+otp/+lorenz63/+presets/LimitCycle.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
methods
77
function obj = LimitCycle
8+
% Create the LimitCycle Lorenz '63 problem object.
9+
%
10+
811
sigma = 10;
912
rho = 350;
1013
beta = 8/3;

toolbox/+otp/+lorenz63/+presets/Surprise.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
methods
66
function obj = Surprise
7+
% Create the Surprise Lorenz '63 problem object.
8+
%
79

810
sigma = 10;
911
rho = 100;

0 commit comments

Comments
 (0)