显示颜色取决于数据的 3D 散点图
我收集了大量数据,希望将其显示在 3-D 散点图中。数据包含在文本文件中。
数据的组织方式如下
1 1 1 10.8
2 1 1 3.4
4 1 1 6.1
8 1 1 4.5
1 2 1 7.8
...
8 8 8 11.9
每行中的前三个标记应代表 (x,y,z) 点。在 3-D 散点图中,每个点都应该有一个点。
点的颜色取决于第四个标记。基本上,第四个参数越接近最大值,它就越接近红色。第四个参数越接近最小值,颜色越蓝。
我很确定 scatter3(X,Y,Z,S,C) 函数可以做到这一点,但我不是专家。
这是我的数据变量包含的内容:
I have a large set of data that I've collected that I'd like to display in a 3-D scatter plot. The data is contained in a text file.
The data is organized like so
1 1 1 10.8
2 1 1 3.4
4 1 1 6.1
8 1 1 4.5
1 2 1 7.8
...
8 8 8 11.9
The first three tokens in each line should represent (x,y,z) points. In the 3-D scatter plot, there should be a dot for each of these points.
The color of the dots depends on the fourth token. Basically, the closer the fourth parameter is to the max value, the closer it will be to the color red. The close the fourth parameter is to the min value, the bluer it will be.
I'm pretty sure that the scatter3(X,Y,Z,S,C) function does this, but I'm not an expert.
Here's what my data variable contains:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个(假设
data
是您在问题中提出的数组):或者您可以简单地内联执行:
Try this (assume
data
is the array you presented in your question):Or you can simply do it inline: