3D Plotting from X, Y, Z Data, Excel or other Tools

后端 未结 5 1685
温柔的废话
温柔的废话 2021-02-13 02:18

I have data that looks like this:

1000    13  75.2
1000    21  79.21
1000    29  80.02
5000    29  87.9
5000    37  88.54
5000    45  88.56
10000   29  90.11
100         


        
5条回答
  •  天命终不由人
    2021-02-13 02:51

    You can use r libraries for 3 D plotting.

    Steps are:

    First create a data frame using data.frame() command.

    Create a 3D plot by using scatterplot3D library.

    Or You can also rotate your chart using rgl library by plot3d() command.

    Alternately you can use plot3d() command from rcmdr library.

    In MATLAB, you can use surf(), mesh() or surfl() command as per your requirement.

    [http://in.mathworks.com/help/matlab/examples/creating-3-d-plots.html]

提交回复
热议问题