Labelling 3 different x and y points with on thefigure without any confusion
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Walter Roberson
2021-6-24
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!