plot/scatter with marker size and color
12 views (last 30 days)
Show older comments
mohamed elgohary
on 27 Mar 2018
Commented: mohamed elgohary
on 27 Mar 2018
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
0 Comments
Accepted Answer
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)
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!