Covariance matrix of the ovarian cancer data
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
If I generate an imagen with imagesc for the Covariance matrix of the ovarian cancer data how do I mark the healthy and patient groups in my plot?
load ovariancancer
cov_all = cov(obs');
figure()
imagesc(cov_all)
colormap default
colorbar
0 Kommentare
Antworten (1)
Vashist Hegde
am 22 Mär. 2021
DISCLAIMER: These are my own views and in no way depict those of MathWorks.
You can do this by adding the color limit property.
Example:
C = [0 2 4 6; 8 10 12 14; 16 18 20 22];
clims = [cmin cmax];
imagesc(C,clims)
colorbar
Here, any value below cmin will have the color assigned to cmin and any value ablove cmax will have the color assigned to cmax.
For more information on imagesc, here is the documentation page: imagesc
Hope this helps.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Blue 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!