Borrar filtros
Borrar filtros

Graphs with stacked plot

1 visualización (últimos 30 días)
Ammy
Ammy el 5 de Abr. de 2022
Respondida: Voss el 5 de Abr. de 2022
figure;
t=tiledlayout(3,1,'TileSpacing','none');
nexttile;
plot(x,y1,x,y2);
xticks([])
nexttile;
plot(x,y2,x,y3);
xticks([])
nexttile;
plot(x,y3,x,y1);
linkaxes(t.Children,'x')
How can I draw the above with stackedplot, the following gives only single output
x=linspace(0,2*pi,100)';
y1=sin(x);
y2=cos(x);
y3=tan(x);
stackedplot(x,[y1 y2 y3],x,y1)

Respuesta aceptada

Voss
Voss el 5 de Abr. de 2022
x=linspace(0,2*pi,100)';
y1=sin(x);
y2=cos(x);
y3=tan(x);
stackedplot(table(x,y1,y2,y3),{{'y1' 'y2'} {'y2' 'y3'} {'y3' 'y1'}});

Más respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by