plot/scatter with marker size and color

12 views (last 30 days)
hello i need some help as example i have x=1:10 y=1:10 value=1:10
scatter(x,y,value)
so I need to add marker color as it varies depending on the ( value) i tried some codes but it doesn't work

Accepted Answer

Birdman
Birdman on 27 Mar 2018
For different color, type
x=1:10;y=1:10;
value=linspace(1,10,length(x));
scatter(x,y,[],value)
To add diamond marker, type
scatter(x,y,[],value,'d')

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!