Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 MATLAB 中绘制 3D 点。例如,看看这张图片:
背景代表一个平面,每个点的颜色取决于它的 Z 值。这是一个 2D 绘图,但如果你用 3D 绘图,你应该得到一个平面和点。我没有创建这个图像,我想知道如何绘制这样的图。我需要使点的颜色取决于它们的 Z 值并以 2D 绘制,或者如果我以 3D 绘制它,我如何以 3D 绘制点?
谢谢
利用scatter3
scatter3
scatter3(x, y, z, 'ob');
请参阅此处的文档。