plot a 3d point in MatLab

后端 未结 2 1629
情书的邮戳
情书的邮戳 2021-01-14 18:18

I\'m trying to plot just one point in any coordinate system: Cartesian, cylindrical or spherical.

I tried plot3(1,1,1) with many values but just shows a

相关标签:
2条回答
  • 2021-01-14 18:27

    How about this?

    plot3(1,1,1,'.');
    grid on
    

    single point in 3d space

    You did try it, but then again, that is exactly what it does!

    0 讨论(0)
  • 2021-01-14 18:47

    Something like scatter3(x,y,z1,720,'g','fill') will make opaque green spheres of 720 size around all the points listed in the vectors x,y,z1.

    0 讨论(0)
提交回复
热议问题