Subtract rows in matrix using loop

Hi, I have a 11 x 3541 matrix. For each column I want subtract; row1 from row1 then,row1 from row 2 then, row2 from row 3 and so on. I have tried using a loop but it doesn't work.
for i= 0:12
mono_am = UVI_all_am(1+i,:) - UVI_all_am(i+1-i,:);
end

 Respuesta aceptada

Stephen23
Stephen23 el 11 de Mayo de 2017
Editada: Stephen23 el 11 de Mayo de 2017
Use diff:
diff(UVI_all_am,1,1)
And stick a row of zeros along the top if you really need row1 - row1.

3 comentarios

David du Preez
David du Preez el 11 de Mayo de 2017
How can I add the row off zeros to the first line if the matrix has already been made ?
X = diff(UVI_all_am,1,1);
X = [zeros(1,size(X,2));X];
David du Preez
David du Preez el 11 de Mayo de 2017
Thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 11 de Mayo de 2017

Comentada:

el 11 de Mayo de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by