How to Plot the 3D points by Plot3 function in matlab?

39 views (last 30 days)
This is a 3*6 matrix in which each column represents a three-dimensional point; I want to plot a three-dimensional plot using the Plot3 .
Thank you for answering
168.651320098755 168.656152628437 168.660985435090 168.665818518737 168.670651879402 168.675485517108
129.084161247190 129.022971519175 128.96177828414 128.900581541801 128.839381291840 128.778177533960
-13.7371238683462 -13.7375175202245 -13.7379111946644 -13.7383048916679 -13.7386986112370 -13.7390923533735
  1 Comment
Monika Phadnis
Monika Phadnis on 25 Jun 2019
Let matrix be A
A = [168.651320098755 168.656152628437 168.660985435090 168.665818518737 168.670651879402 168.675485517108;
129.084161247190 129.022971519175 128.96177828414 128.900581541801 128.839381291840 128.778177533960;
-13.7371238683462 -13.7375175202245 -13.7379111946644 -13.7383048916679 -13.7386986112370 -13.7390923533735];
plot3(A(1,:),A(2,:),A(3,:))
So you send each row of matrix as X,Y and Z coordinate vectors.
Is this the desired result or you want something else?

Sign in to comment.

Accepted Answer

Himanshu Rai
Himanshu Rai on 25 Jun 2019
Use the following expression, assuming your matrix is stored in variable 'x'
plot3(x(1, :), x(2, :), x(3, :))

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!