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!