There is any function displacement
10 ビュー (過去 30 日間)
古いコメントを表示
This array
I want find differential between the numbers then, i want find displacement
and thank u
0 件のコメント
回答 (1 件)
Joseph Cheng
2015 年 5 月 17 日
編集済み: Joseph Cheng
2015 年 5 月 17 日
you can use the function diff() to perform this differential. so you'll have something like
da = diff(a); %this will get your your [4 5 ...]
then you can perform your da./a(1:end-1)*100.
7 件のコメント
Joseph Cheng
2015 年 5 月 19 日
da = diff(a,[],2)./a read the documentation of the function diff() to see that by performing diff(a,[],2) we perform it in the correct dimension.
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!