How to turn x,y,counts data into a surface map
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Samuel White
am 5 Sep. 2018
Kommentiert: Star Strider
am 5 Sep. 2018
Hi all, I have a text file in format x,y,count format, as in an x position, y position and a count number. I wish to make a colourmap plot of the data such that it shows regions of high counts and low counts by colour. The surf function would be ideal, only my data is not in a counts matrix. How can I form the colourmap plot?
Kind regards, Sam
0 Kommentare
Akzeptierte Antwort
Star Strider
am 5 Sep. 2018
Plot your data using the stem3 (link) function. You can easily see if your data are gridded, since the intervals between the stem lines will be regular. If so, use the reshape (link) function to create the matrices to use with surf.
If instead your data are scattered, you will likely need to use the griddata (link) or related interpolation functions to create the necessary matrices.
2 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!