フィルターのクリア

Finding the delta (subtraction) of two cells in an existing matrix

16 ビュー (過去 30 日間)
itzhak mal
itzhak mal 2019 年 4 月 16 日
コメント済み: Star Strider 2019 年 4 月 16 日
Hi,
I have a matrix with 10^7 rows and 17 columns.
Column number 17 is the time and I want to add another column, 18, that will have the delta of these time steps..
for example:
1
5
15
will yield
4
10
I get do loops cause there are 10^7 million rows.. it would take ages. Any ideas? Perhaps a boolian expression would do the trick? Thanks!!!

採用された回答

Star Strider
Star Strider 2019 年 4 月 16 日
Use the diff (link) function, and add a ‘0’ to the output, so the row lengths will be the same:
time = [ 1
5
15]
dtime = [0; diff(time)]
producing:
time =
1
5
15
dtime =
0
4
10
  2 件のコメント
itzhak mal
itzhak mal 2019 年 4 月 16 日
thank you!
Star Strider
Star Strider 2019 年 4 月 16 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by