Azzera filtri
Azzera filtri

Color map plotting with weightage

1 visualizzazione (ultimi 30 giorni)
Manish Kumar
Manish Kumar il 8 Mag 2019
Risposto: KSSV il 8 Mag 2019
Dear Experts,
I want to plot (x,y) with the circles associated with the weightage of y depends on the third column of excel sheet. The plot should look like the attached image. Color map will be appreciated.Screenshot (42).png

Risposta accettata

KSSV
KSSV il 8 Mag 2019
Read about scatter
[num,txt,raw] = xlsread('Book1.xlsx') ;
x = num(:,1) ;
y = num(:,2) ;
w = num(:,3) ;
plot(x,y)
hold on
% remove the nans
idx = isnan(x) ;
x(idx) = [] ; y(idx) = [] ; w(idx) = [] ;
scatter(x,y,w+20,w,'filled') % 20 is added to 20, it can be changed

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by