Borrar filtros
Borrar filtros

Color map plotting with weightage

1 visualización (últimos 30 días)
Manish Kumar
Manish Kumar el 8 de Mayo de 2019
Respondida: KSSV el 8 de Mayo de 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

Respuesta aceptada

KSSV
KSSV el 8 de Mayo de 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

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by