How can I find the difference between adjacent elements while ignoring the first value?

1 回表示 (過去 30 日間)
I have the following column vector.
data = randperm(100,15)';
Is there a way of using the "diff" function to find the difference between adjacent elements while ignoring the first one? In other words, I would like the calculation to start with elements 2 and 3 then 4 and 5 etc.
Appreciate the help! Thanks.

採用された回答

Stephen23
Stephen23 2021 年 2 月 15 日
diff(data(2:end))
  5 件のコメント
Stephen23
Stephen23 2021 年 2 月 15 日
編集済み: Stephen23 2021 年 2 月 15 日
Where vec is your vector of 14 elements:
out = vec(2:2:end)-vec(1:2:end)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by