Looping through a Matrix

1 visualización (últimos 30 días)
Elise Gamble
Elise Gamble el 5 de Nov. de 2019
Editada: KALYAN ACHARJYA el 5 de Nov. de 2019
As of now, I have a 10x10 matrix of twos with 0s and 1s randomly generated in the matrix. I need to index through each component of the matrix based on the value I encounter. Starting at (1,1) and indexing by rows. If it is a 2, I need to add 1 to it and continue to the next row. If it is a 1, I need to switch from indexing by rows to indexing to the columns above it. If it is a 0, I need to switch from indexing by row to indexing to the columns below it. Trying to figure out of to loop through each component of the matrix and switch indexing direction based on the values in the matrix.

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 5 de Nov. de 2019
Editada: KALYAN ACHARJYA el 5 de Nov. de 2019
mat=randi([0 2],[10,10]); % Just as an example
result=mat+(mat==2)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by