A function that outputs multiple plots?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
alpedhuez
am 13 Aug. 2020
Kommentiert: alpedhuez
am 13 Aug. 2020
Can one write a function that outputs multiple plots?
4 Kommentare
hosein Javan
am 13 Aug. 2020
alpedhuez for example the function "step" plots step response of a system. or the function "spectrogram" plots the fourier transform spectrum.
Akzeptierte Antwort
hosein Javan
am 13 Aug. 2020
function plotoutput()
x = 1:10;
y = x.*x;
plot(x,y)
when you call the function, it shows a figure.
3 Kommentare
hosein Javan
am 13 Aug. 2020
Bearbeitet: hosein Javan
am 13 Aug. 2020
function plotoutput()
x = 1:10;
y1 = x.*x;
y2 = x + 1;
figure(1);plot(x,y1)
figure(2);plot(x,y2)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!