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

3 Ansichten (letzte 30 Tage)
lauuser1
lauuser1 am 27 Apr. 2016
Beantwortet: Walter Roberson am 27 Apr. 2016
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?

Antworten (1)

Walter Roberson
Walter Roberson am 27 Apr. 2016
[tr, tc] = find(matrix);
track = [tr, tc];

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by