Adding to the first value in a matrix based on the second value in that row.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Toby
el 7 de En. de 2020
Respondida: Alex Mcaulley
el 7 de En. de 2020
I have a matrix which has 4 columns and a number of rows. I simply want to add 1 to the value in the first column of a row if the second column has the value of 11 or 12 in it.
0 comentarios
Respuesta aceptada
Alex Mcaulley
el 7 de En. de 2020
Being A your matrix:
A(A(:,2) == 11 | A(:,2) == 12,1) = A(A(:,2) == 11 | A(:,2) == 12,1) + 1
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!