how to plot a specific column of a matrix
47 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hi there , i have a 115340*3 matrix i want to plot just the second column of it, how can i do that ? any help would be appreciated.
0 comentarios
Respuestas (2)
Mischa Kim
el 24 de Jul. de 2014
Editada: Mischa Kim
el 24 de Jul. de 2014
Amin, use
plot(mymat(:,2))
where mymat is the matrix.
5 comentarios
Michael Haderlein
el 24 de Jul. de 2014
That looks as if your data is not sorted. Either you don't plot the lines
plot(...,'.')
or you sort beforehand:
[sort1,ind]=sort(matrix(:,2));
sort2=matrix(ind,3);
plot(sort1,sort2)
Best regards,
Michael
0 comentarios
Ver también
Categorías
Más información sobre Annotations 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!

