Skip to content

Commit 4c0d7aa

Browse files
Remove loglog plots
1 parent ca6f92d commit 4c0d7aa

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

src/+otp/+hires/HiresProblem.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
function obj = HiresProblem(timeSpan, y0, parameters)
55
obj@otp.Problem('HIRES', 8, timeSpan, y0, parameters);
66
end
7-
8-
function fig = loglog(obj, varargin)
9-
fig = obj.plot(varargin{:}, 'xscale', 'log', 'yscale', 'log');
10-
end
117
end
128

139
methods (Access = protected)
@@ -17,5 +13,9 @@ function onSettingsChanged(obj)
1713
otp.Rhs.FieldNames.JacobianVectorProduct, @otp.hires.jvp, ...
1814
otp.Rhs.FieldNames.JacobianAdjointVectorProduct, @otp.hires.javp);
1915
end
16+
17+
function fig = internalPlot(obj, t, y, varargin)
18+
fig = internalPlot@otp.Problem(obj, t, y, 'xscale', 'log', 'yscale', 'log', varargin{:});
19+
end
2020
end
2121
end

src/+otp/+zlakinetics/ZLAKineticsProblem.m

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
function obj = ZLAKineticsProblem(timeSpan, y0, parameters)
44
obj@otp.Problem('ZLA Kinetics', 6, timeSpan, y0, parameters);
55
end
6-
7-
function fig = loglog(obj, varargin)
8-
fig = obj.plot(varargin{:}, 'xscale', 'log', 'yscale', 'log');
9-
end
106
end
117

128
methods (Access = protected)

0 commit comments

Comments
 (0)