A function that outputs multiple plots?
1 view (last 30 days)
Show older comments
Can one write a function that outputs multiple plots?
4 Comments
hosein Javan
on 13 Aug 2020
alpedhuez for example the function "step" plots step response of a system. or the function "spectrogram" plots the fourier transform spectrum.
Accepted Answer
hosein Javan
on 13 Aug 2020
function plotoutput()
x = 1:10;
y = x.*x;
plot(x,y)
when you call the function, it shows a figure.
3 Comments
hosein Javan
on 13 Aug 2020
Edited: hosein Javan
on 13 Aug 2020
function plotoutput()
x = 1:10;
y1 = x.*x;
y2 = x + 1;
figure(1);plot(x,y1)
figure(2);plot(x,y2)
More Answers (0)
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!