plot two vectors simultaneuosly on the same axis?
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bojan
el 28 de Mzo. de 2014
Comentada: Bojan
el 28 de Mzo. de 2014
Regards. I have 2 vectors. For example a=[2 4 3 6 7 8] and b=[7 5 2 4 4 1]. I wolud like to plot them both on x axis simultaneously, for exampe in order a=2,b=7,a=4,b=5... y axis is supposed to be 0 for vector a and 1 for vector b. is this possible to do? Thank you.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 28 de Mzo. de 2014
a=[2 4 3 6 7 8]
b=[7 5 2 4 4 1]
x=[a ;b]
x=x(:)
y=[zeros(size(a)); ones(size(b))]
y=y(:)
plot(x,y)
4 comentarios
Azzi Abdelmalek
el 28 de Mzo. de 2014
The order is not 2 1 2 1, you can check by
disp(x)
Maybe you mean something else
Más respuestas (1)
Ver también
Categorías
Más información sobre Surface and Mesh 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!