MATLAB:散点图 - 根据位置具有不同形状的点
我想要构建的图形的属性如下:
该图形显示 200 个点。对角线上方的点应以红色星形显示,对角线下方的点应以蓝色三角形显示。
这就是我到目前为止所做的,
x=[0 1];
y=[0 1];
line(x,y, 'linewidth', 1);
hggroup = scatter(rand(100,1),rand(100,1));
axis tight;
axis square;
title('Scatterplot')
你能帮我吗?提前致谢。
The properties of my figure I want to build are the following:
The figure shows 200 points. The points above the diagonal should be shown with red stars and the one below the diagonal, with blue triangles.
This is what I've managed to do so far
x=[0 1];
y=[0 1];
line(x,y, 'linewidth', 1);
hggroup = scatter(rand(100,1),rand(100,1));
axis tight;
axis square;
title('Scatterplot')
Could you help me with that? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个怎么样:
How about this: