Info

此问题已关闭。 请重新打开它进行编辑或回答。

HOW CAN I KEEP THE INDEX OF MAY MATRIX?????

1 次查看(过去 30 天)
ali hadjer
ali hadjer 2015-11-20
关闭: MATLAB Answer Bot 2021-8-20
heloo i have a matrix with *two vector*i want to classify my matrix within the seconde vector and *keep *the index of this matrix
1 2 3 4 5 6 7 8 9 10
3
2
3
3
3
3
1
2
4
2
my matrix will be after classification :
7 2 8 10 1 3 4 5 6 9
1 2 2 2 3 3 3 3 3 4
BUT WHEN I CALL MAY MATRIX FOR EXEMPLE /
FOR i= 1 : n
THEY USE THE INDEX OF THE FIRST MATRIX WITHOUT CLASSIFICATION AND THEY USE THE VALOR OF THE INDEX i=1

回答(1 个)

Walter Roberson
Walter Roberson 2015-11-23
sortedMatrix = sortrows(YourTwoRowMatrix.').';
  2 个评论
Image Analyst
Image Analyst 2015-11-23
Not sure I understand.
v1 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
v2 = [3, 2, 3, 3, 3, 3, 1, 2, 4, 2]
YourTwoRowMatrix = [v1;v2]
sortedMatrix = sortrows(YourTwoRowMatrix.').'
and
v1 =
1 2 3 4 5 6 7 8 9 10
v2 =
3 2 3 3 3 3 1 2 4 2
YourTwoRowMatrix =
1 2 3 4 5 6 7 8 9 10
3 2 3 3 3 3 1 2 4 2
sortedMatrix =
1 2 3 4 5 6 7 8 9 10
3 2 3 3 3 3 1 2 4 2
That doesn't look like
7 2 8 10 1 3 4 5 6 9
1 2 2 2 3 3 3 3 3 4
, not that I can do better. I have no idea whatsoever how ali classified the matrix to arrive at the after-classification matrix that was given. ali, how did you get these numbers, like the 7 in the upper left - how did you arrive at that?

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by