Create a Scatter plot from a cell array
Mostrar comentarios más antiguos
I have a cell and array of 336x4. The values in column 2 and 3 are correlated to one another. How do I create a scatter plot to show this with the values from column 2 on the y axis and from 3 on the x axis.
2 comentarios
José-Luis
el 7 de Jul. de 2016
What's in each cell?
David du Preez
el 7 de Jul. de 2016
Respuesta aceptada
Más respuestas (1)
load CS06
scatter([CS06{:,3}],[CS06{:,2}])
Categorías
Más información sobre Scatter Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!