Labelling 3 different x and y points with on thefigure without any confusion
1 view (last 30 days)
Show older comments
Onur Hakverdi
on 24 Jun 2021
Commented: Onur Hakverdi
on 24 Jun 2021
Hello I have a csv file that receives wavelength intensity values and for the csv file I have not any problem. My problem is that I have defined the values for the a = [247 309 324] ; these values are on x axes and for the b = [5.7 90.5 345.1] on y axes; so wavelength 247 has 5.7 intensity sameway it follows 309 90.5 and 324 345.1. But I have problem on labelling these 3 points and I have also problem with legend(names). Lastly, as you can see on the figure it should labels the only C-1 Al-1 Cu-1 with different markers but the big red dot doesn't symbol my Al-1 the star Al-1 and the red dot is different.
0 Comments
Accepted Answer
Walter Roberson
on 24 Jun 2021
ext() objects are included in legend() .
You need to record the handles returned by plot(). Then you call legend() and as the first parameter to legend() you pass the handles of the graphics objects you are creating legend entries for.
When you plot(a,b,'*') you are generating a single line() object with three markers that are all the same.
line() objects and scatter() objects have the same difficulty that each line and each scatter plot can only have a single marker shape and color assigned to it. If you need different marker shapes or colors for your three a, b points then you will need to make three calls to plot() or scatter()
3 Comments
More Answers (0)
See Also
Categories
Find more on Legend 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!