how to write equation in matlab ?

1 Ansicht (letzte 30 Tage)
Deepu S S
Deepu S S am 23 Nov. 2021
Kommentiert: Deepu S S am 24 Nov. 2021

Antworten (1)

KSSV
KSSV am 23 Nov. 2021
If x is your series.
N = length(x) ;
FI = sum(abs(diff(x)))/N ;
  5 Kommentare
Image Analyst
Image Analyst am 23 Nov. 2021
I guess you figured it out since you accepted the answer (remove the division by N), but here is the answer assuming N is the length of the x vector:
FI = sum(abs(diff(x)));
or more accurately, assuming we just want to sum up to N and we have no idea how many elements are in x (might be N or might be something else):
FI = sum(abs(diff(x(1:N))))
Deepu S S
Deepu S S am 24 Nov. 2021
Thank you @Image Analyst...now its working

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by