Non uniform circle marks on line plot
4 次查看(过去 30 天)
显示 更早的评论
I have a line plot. I need to mark circles on it non-uniformly such that frequency of circles are more in the starting few points and less after that. Currently, I am doing it uniformly as: plot(t(1:200:2001),data(1,1:200:2001), '-o');
0 个评论
回答(1 个)
Steven Lord
2018-8-16
2 个评论
Steven Lord
2018-8-16
The code below plots markers at 1, 4, 9, 16, 25, 36, 49, 64, 81, and 100. If that's not what you mean by "non-uniform points", please clarify exactly what you mean when you use that term.
x = 1:100;
y = x.^2;
plot(x, y, '-o', 'MarkerIndices', (1:10).^2)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!