how to combine the coordinates of points of 2 column vectors for specific width

1 回表示 (過去 30 日間)
M.S. Khan
M.S. Khan 2019 年 6 月 13 日
コメント済み: Guillaume 2019 年 6 月 17 日
Thanks for community support. let me phrase my questions with more detail lets suppose i have vertices of a tea cup.
Vx =[ 0;1;2;0;9]
Vy = [1;1;,2;;3]
Vz= = [38,32,-1]
They are cancatenated in a larger matrix = [Vx Vy Vz].
After sorting, i want to find first elements or coordinates like (0,1,38) here in Vx,Vy,Vz wherever they meet or match, it should be labelled as 5 in that particular grid.
Your guidance will be highly appreciated.
regards
  2 件のコメント
dpb
dpb 2019 年 6 月 13 日
編集済み: dpb 2019 年 6 月 14 日
"They are cancatenated in a larger matrix = [Vx Vy Vz]."
No they aren't -- can't be because
size(Vx) --> 5,1
size(Vy) --> 4,1
size(Vz) --> 1,3
so never shall they match w/o help...
M.S. Khan
M.S. Khan 2019 年 6 月 13 日
okay. lets Vx, Vy and Vz are same size. then how can we extract the first coordinates of all three vectors to make a point and label it as 5

サインインしてコメントする。

回答 (1 件)

madhan ravi
madhan ravi 2019 年 6 月 13 日
matrix(1,:) % extracted the first coordinate , however I don’t know what you mean by label them as five perhaps text() is what you’re looking for??
  12 件のコメント
M.S. Khan
M.S. Khan 2019 年 6 月 17 日
Mr. Ravi, i am still struggling with it but trying to utilize reshape function on my problem. lets me figure out but still very confusiong problem to handle it.
Guillaume
Guillaume 2019 年 6 月 17 日
i am still struggling with it
If, instead of answering my question by another question, you'd actually answered it, we probably could have figured what it is you want. So once again, given the inputs:
Vx = [0 0 0 0 0 3 3 3 3 3 6 6 6 6 6 9 9 9 9 9 11 11 11 11 11]
Vy = [0 3 6 9 11 0 3 6 9 11 0 3 6 9 11 0 3 6 9 11 0 3 6 9 11]
width = 5
What do you want as output. Use valid matlab syntax to fill the following:
result = ????

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by