Filter löschen
Filter löschen

Color map plotting with weightage

1 Ansicht (letzte 30 Tage)
Manish Kumar
Manish Kumar am 8 Mai 2019
Beantwortet: KSSV am 8 Mai 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

Akzeptierte Antwort

KSSV
KSSV am 8 Mai 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

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by