Setting color to text from a colormap
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Ahmed Abdulla
 il 3 Lug 2020
  
    
    
    
    
    Risposto: Monisha Nalluru
    
 il 8 Lug 2020
            I have generated the following figure, the numbers are the correlatios from the scatter plot, i was thinking of changing the colour of the numbers to be representative of the correlation. 
I used the following to display the correlations:
            subplot_tight(numCols,numCols,N)%,axis square;
            A=round(corr(Long_Lat_Data(:,i),Long_Lat_Data(:,j)),3); %rounding the correlation value to 3 decimal places to save space on plot 
            set(gca,'XTick',[])
            set(gca,'YTick',[])
            str = {A};
%             axis([0 2 0 2])
            t = text(0.2,0.5,str);
            t(1).FontSize = 8;

0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Color and Styling in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

