Customizing plots that are matrices of column vectors?
1 次查看(过去 30 天)
显示 更早的评论
Say I have a matrix CphNUM consisting of 2 collumn vectors, and I wish to scatter it along xNUM:
scatter(xNUM, CphNUM)
Is there any way that I can, without splitting the matrix into separate entries, change the markers independently? I'm aware I can just write:
scatter(xNUM, CphNUM(:, 1), "filled")
scatter(xNUM, CphNUM(:, 2), "filled", 'd')
I am just curious if I can do this without separating the matrix. I've been trying to read some other posts here as well as the documentation, but I haven't been able to find anything specific to plotting a matrix itself.
Thanks!
0 个评论
回答(2 个)
Star Strider
2024-9-9
It is reelatively straightforward to change the markers (and other propeerties) after plotting.
Try something like this —
x = linspace(0, 10, 15).';
y = [cos(2*pi*x) sin(2*pi*x)];
figure
scatter(x, y, 'filled')
grid
title('Original')
figure
hsp = scatter(x, y, 'filled');
grid
hsp(1).Marker = 'd';
hsp(2).Marker = 'p';
title('Markers Changed After Plotting')
.
0 个评论
另请参阅
类别
在 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!