Substracting the value of upper row from all the values from the subsequent rows individually ?

조회 수: 1 (최근 30일)
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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2019년 3월 31일
A =[ 2130.18
2217.22
2334.24
2433.29];
out = A(2:end) - A(1);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by