How to plot the data i.e. in form of vectors?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Amit
el 24 de Feb. de 2012
Editada: Image Analyst
el 23 de Oct. de 2013
I have vector 1 and vector 2.
I want to arrange the vector 1 in ascending order while keeping the relationship b/w elements of vector1 and vector2. I am using plot, and if i m trying to arrange vectors in order I am losing the relationship. How I can plot the data keeping actual relationship b/w vector 1 and vector 2.
0 comentarios
Respuesta aceptada
Friedrich
el 24 de Feb. de 2012
Hi,
a small example would be:
x1 = [ 4 3 2 1]
x2 = [1 2 3 4]
[newx1, id] = sort(x1)
newx2 = x2(id)
Más respuestas (0)
Ver también
Categorías
Más información sobre Formatting and Annotation en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!