Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to differentiate one list with respect to another?

1 回表示 (過去 30 日間)
Bartlomiej Winter
Bartlomiej Winter 2016 年 10 月 26 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hello all,
Thanks for looking. I was wondering how to differentiate one list with respect to another. For example is a=[1,2,3,4,5] and b=[10,11,12,13,14], is there a way I can do da/db?
Thank you in advance for your help.
Bartek

回答 (1 件)

Massimo Zanetti
Massimo Zanetti 2016 年 10 月 26 日
Explain better what do you mean by "differentiate one list w.r.t. one another".
If for
a=[1,2,3,4,5]
b=[10,11,12,13,14]
you aim at getting
dff= [1-10,2-11,3-12,4-13,5-14]
then just do elementwise subtraction
dff=a-b
  1 件のコメント
Bartlomiej Winter
Bartlomiej Winter 2016 年 10 月 26 日
Thank you very much for this I'll give it a go.

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by