How can I write titles on scatter plot?
4 次查看(过去 30 天)
显示 更早的评论
Hello MATLAB Gurus! I have a Gui and axes1 to make scatter plot on it. Well I did it but I want to assign names to points on the graph. Any idea would be a great job for me. Thanks in advance.
a=[1,2,3,4];
b=[5,6,7,8];
names={'a','b','c', 'd'};
scatter(handles.axes2, a, b, 'filled')
2 个评论
回答(1 个)
Walter Roberson
2015-9-17
See text() or annotation()
If you were to plot only one point at a time, you could use legend()
3 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Scatter Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!