필터 지우기
필터 지우기

Adding coordinate values (x,y) to a matrix depending on another matrix

조회 수: 2 (최근 30일)
lauuser1
lauuser1 2016년 4월 27일
답변: Walter Roberson 2016년 4월 27일
There is one matrix that is a 10 x 10 that is initially all zeros.
matrix = zeros(10,10)
This matrix will eventually replace values of 0 with 1 until the whole matrix is made up of 1's.
There is another matrix that is an unknown number (L) x 2
track = zeros(L,2)
Now what I would like to do is populate track with coordinates whenever matrix changes from 0 to 1. So if a 1 is found in matrix in the 2nd row 1st column then the next value of 1 is in the 5th row 10th column, track will look like
track = [2 1; 5 10]
What is a possible way to do this?

답변 (1개)

Walter Roberson
Walter Roberson 2016년 4월 27일
[tr, tc] = find(matrix);
track = [tr, tc];

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by