필터 지우기
필터 지우기

Can I store row numbers of a matrix in a column without using any loop?

조회 수: 2 (최근 30일)
How will I store the first column of a matrix as its corresponding row number without using a loop. That is, the first column for a 3x3 matrix as [1 . .;2 . .;3 . .].
  댓글 수: 2
Aquatris
Aquatris 2018년 6월 29일
You mean something like this;
A=[1 5 6; 2 7 8;3 9 0];
B = A(:,1); % this will make B = [1;2;3]
Nagesh A P
Nagesh A P 2018년 6월 29일
편집: Nagesh A P 2018년 6월 29일
Ok. This is the case. I have a very large data, something like 100,000 data points, so 100,000 rows. I want to store the first column of a matrix newly created (with as many rows as number of data points mentioned) as its corresponding row number. I can do what you've mentioned. But it'll take me a new matrix and another loop to create that matrix. Could you suggest something which takes less time.

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

채택된 답변

Nithin Banka
Nithin Banka 2018년 6월 29일
a = magic(3);
a(:, 1) = [1:3]; % This will store the row index in the first column of 'a'
  댓글 수: 3
Nagesh A P
Nagesh A P 2018년 6월 29일
Thad did save my time bro. thanks
Nagesh A P
Nagesh A P 2018년 6월 29일
Thanks @nithin and @Guillaume

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by