linear index to matrix index

조회 수: 3 (최근 30일)
yonatan s
yonatan s 2018년 2월 1일
댓글: Andrei Bobrov 2018년 2월 1일
ola,
I have a matrix 1020x1294, and the linear index 475000. I can do the math by myself, but I'd like to know is there a function that calculates what is the row&column of this index in the matrix?
thanks
  댓글 수: 3
yonatan s
yonatan s 2018년 2월 1일
no reason. why does it matter?
Birdman
Birdman 2018년 2월 1일
Just wondered. It does not matter.

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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2018년 2월 1일
ii = 475000;
m = size(A,1);
r = rem(ii,m);
c = ceil(ii/m);

추가 답변 (1개)

Birdman
Birdman 2018년 2월 1일
편집: Birdman 2018년 2월 1일
One approach:(use ind2sub)
A=randi([1 5],1020,1294);%demo data
[r,c]=ind2sub(size(A),475000)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by