how edit code in matlab

1 Ansicht (letzte 30 Tage)
work wolf
work wolf am 26 Feb. 2016
Bearbeitet: work wolf am 11 Mär. 2016
how edit code matlab for change some comments
  2 Kommentare
Walter Roberson
Walter Roberson am 26 Feb. 2016
That image is too small and too faint for me to read. Please post a more legible version. Assume that some of us are half blind.
James Tursa
James Tursa am 27 Feb. 2016
Do you have a specific function you are working with?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 27 Feb. 2016
sum( abs(diff(f(x))) .* diff(x) )

Weitere Antworten (1)

John BG
John BG am 27 Feb. 2016
assuming you have sampled often enough to catch the true max min values, to avoid missing max or min when searching for U and L within [x(i) x(i+1)] then define reference vector x
x=[0:.1:10]
f=@(x) sin(x)
y=f(x)
z=zeros(1,length(x)-1)
for i=2:length(x)
z(i)=(max(y(i),y(i-1))-min(y(i),y(i-1)))*(x(i)-x(i-1))
end
sum(z)
redefine x and the function f to your values of interest.
If you find this answer of any help solving this question, please click on the thumbs-up vote link,
thanks in advance
John

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by