Hi
I have a matrix 81 by 81 i.e.
1 2 . . 81
1 a1,1 a1,2 a1,81
.
.
81 a81,1 a81,81
I need to convert it to a matrix of order 6561 (81*81) by 2 i.e.
1=a1,1
2=a1,2
. .
81=a81,81
Any help in this regard would be greatly appreciated. Thanks in advance.

댓글 수: 4

Image Analyst
Image Analyst 2015년 5월 17일
I don't know what that means. Please give a small example, like a 4 by 4 with actual numbers of the input array and desired output array.
Stephen23
Stephen23 2015년 5월 17일
The first matrix has 6561 elements, the output one is shown with 81 elements. What happens to the rest of them?
Fayyaz
Fayyaz 2015년 5월 17일
Fayyaz
Fayyaz 2015년 5월 17일
Thanks all for your comments. Problem has been solved. :)

댓글을 달려면 로그인하십시오.

 채택된 답변

Star Strider
Star Strider 2015년 5월 17일
편집: Star Strider 2015년 5월 17일

1 개 추천

If ‘A’ is your matrix, either use the reshape function:
Av = reshape(A, [], 1);
or simply use the vector default:
Av = A(:);
EDIT — I didn’t see the repeating indices in the first column. To create them, use the repmat function:
Ix = repmat(1:81, 1, 81)';

댓글 수: 2

Fayyaz
Fayyaz 2015년 5월 17일
Both of them are OK. thanks :)
Star Strider
Star Strider 2015년 5월 17일
My pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2015년 5월 17일

댓글:

2015년 5월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by