Substracting the value of upper row from all the values from the subsequent rows individually ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Fariha Komal
el 31 de Mzo. de 2019
Respondida: Andrei Bobrov
el 31 de Mzo. de 2019
How can I Substracting the value of upper row from all the values from the subsequent rows individually and store the new values in a matrix/array ?
For Example I have a table :
2130.18
2217.22
2334.24
2433.29
and I want to substract like :
2217.22 - 2130.18
2334.24 - 2130. 18
2433.29 - 2130.18
and store the new values in an array ?
Please help I am new to matlab
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 31 de Mzo. de 2019
A =[ 2130.18
2217.22
2334.24
2433.29];
out = A(2:end) - A(1);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!