Data Visualisation Basic with x-y coordinate and z data value
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, suppose I have x-y coordinate and z value as the grades of the points. How can I visualize my data in 2-D colormap ? (I want to show x-y cordinate and different colors for different values at every points inside the image).
Please help.
0 Commenti
Risposte (1)
Star Strider
il 28 Ago 2019
It depends what ‘x’, ‘y’ and ‘z’ are, and what you want.
If they are vectors and have sufficient density, this may work:
figure
scatter3(x, y, z, [], z, 'filled')
view(0, 90)
If they are vectors and are gridded, just use reshape to form them into matrices, then use the contour function. If they are not gridded, first use griddata to form them into matrices, then use contour.
It all depends on what you are starting with, and what you want as the end result.
0 Commenti
Vedere anche
Categorie
Scopri di più su Contour Plots in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!