A function that outputs multiple plots?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
alpedhuez
el 13 de Ag. de 2020
Comentada: alpedhuez
el 13 de Ag. de 2020
Can one write a function that outputs multiple plots?
4 comentarios
hosein Javan
el 13 de Ag. de 2020
alpedhuez for example the function "step" plots step response of a system. or the function "spectrogram" plots the fourier transform spectrum.
Respuesta aceptada
hosein Javan
el 13 de Ag. de 2020
function plotoutput()
x = 1:10;
y = x.*x;
plot(x,y)
when you call the function, it shows a figure.
3 comentarios
hosein Javan
el 13 de Ag. de 2020
Editada: hosein Javan
el 13 de Ag. de 2020
function plotoutput()
x = 1:10;
y1 = x.*x;
y2 = x + 1;
figure(1);plot(x,y1)
figure(2);plot(x,y2)
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!