A function that outputs multiple plots?

4 comentarios

David Hill
David Hill el 13 de Ag. de 2020
There are already many Matlab functions that output plots.
alpedhuez
alpedhuez el 13 de Ag. de 2020
For example?
hosein Javan
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.
alpedhuez
alpedhuez el 13 de Ag. de 2020
Let me work on it.

Iniciar sesión para comentar.

 Respuesta aceptada

hosein Javan
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

alpedhuez
alpedhuez el 13 de Ag. de 2020
Multiple plots, not just one!
hosein Javan
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)
alpedhuez
alpedhuez el 13 de Ag. de 2020
Let me work on it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Labels and Styling en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 13 de Ag. de 2020

Comentada:

el 13 de Ag. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by