Advertisement
Guest User

Untitled

a guest
Nov 13th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Octave 0.21 KB | None | 0 0
  1. paso = 0.5;
  2. tiempo=0:paso:250;
  3. function dhdt=dhdt(h,t)
  4.     if t<=30
  5.         f=3;
  6.     else
  7.         f=3+0.01*t;
  8.         if f > = 5;
  9.               f = 5;
  10.         end
  11.     end
  12.     dhdt=f-x*h;
  13. endfunction
  14. pv=bias+kc(er+ti*int(Edt)+td*dE/dt)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement