How to Plot a matrix?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, I have a matrix that I want to visualize it. So the figure have a legend showing the greater values is with which color and vise versa.
thanks
0 Kommentare
Antworten (2)
Seyhan Emre Gorucu
am 18 Jul. 2012
I didn't understand your question exactly but scatter might be solution for you. You need a x vector y vector and a matrix. Google matlab scatter. I can help better if you have a simple example and if you can elaborate better.
0 Kommentare
Richard Zapor
am 18 Jul. 2012
Bearbeitet: Richard Zapor
am 18 Jul. 2012
Visualizing a matrix for relative magnitudes can be done with surf or I like imagesc.
A=randi(256,[64 128]);
figure;imagesc(A)
You can threshold and change from color to grayscale.
figure;imagesc(A,[0 192]);colormap gray;axis equal;axis tight
0 Kommentare
Siehe auch
Kategorien
Mehr zu Scatter Plots 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!