Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LRT_infinite_dimensional_systems
conI
Commits
1425596b
Commit
1425596b
authored
Oct 26, 2020
by
Jakob Gabriel
Browse files
quantity.Discrete.plot: added xlim and ylim
parent
68d1c5a1
Changes
1
Show whitespace changes
Inline
Side-by-side
+quantity/Discrete.m
View file @
1425596b
...
...
@@ -1189,11 +1189,14 @@ classdef (InferiorClasses = {?quantity.Symbolic}) Discrete ...
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
domain
(
1
)
.
grid
(:),
...
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
valueDiscrete
,
...
additionalPlotOptions
{:});
xlim
(
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
domain
(
1
)
.
grid
([
1
,
end
]));
elseif
obj
.
nargin
()
==
2
misc
.
isurf
(
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
domain
(
1
)
.
grid
(:),
...
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
domain
(
2
)
.
grid
(:),
...
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
valueDiscrete
,
...
additionalPlotOptions
{:});
xlim
(
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
domain
(
1
)
.
grid
([
1
,
end
]));
ylim
(
obj
(
rowIdx
,
columnIdx
,
figureIdx
)
.
domain
(
2
)
.
grid
([
1
,
end
]));
ylabel
(
labelHelper
(
2
),
'Interpreter'
,
'latex'
);
else
error
(
'number inputs not supported'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment