Extracting data from an array

5 ビュー (過去 30 日間)
Matt Tomei
Matt Tomei 2020 年 10 月 22 日
回答済み: Sindar 2020 年 10 月 23 日
I am interested in plotting a curve to show the path of a point (B) on a rotating gear. This gear is attahced to an arm that makes one full revolution.
I have a for loop to evaluate theta from 0 to 2*pi (for theta=0:pi/180:2*pi). While the for loop runs, the position of point B is stored in a previously initialized, empty array (B=[]). The resulting array is 4x1 and I would like to extract only the first 3 rows to obtain the x,y,z components of the point's position. I intend to then use these x,y,z components to plot the path of the point using plot3(x,y,z).
Can anyone help me to extract the first 3 rows from the 4x1 array? Also, from this new 3x1 array, what would the arguments be in order to use plot3(x,y,z) properly?

回答 (1 件)

Sindar
Sindar 2020 年 10 月 23 日
To extract the first three rows:
B3 = B(1:3,:);
x = B3(1,:);
y = B3(2,:);
z = B3(3,:);
But, if B is really 4x1, then you only have a single point

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by