Advertisement
Ostu

Untitled

May 26th, 2021
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.41 KB | None | 0 0
  1. %% Drugi przykład
  2. figure(5)
  3. mesh((0.5*X2.^2)-196.2*cos(X1)+196.2)
  4. title('Funkcja Lapunova dla wahadła - pierwszy warunek')
  5. figure(6)
  6. mesh(X1,X2,(0.5*X2.^2)-196.2*cos(X1)+196.2 >0)
  7. title('Funkcja Lapunova dla wahadła - drugi warunek')
  8. figure(7)
  9. mesh((-2*X2.^2))
  10. title('Funkcja Lapunova dla wahadła - trzeci warunek')
  11. figure(8)
  12. mesh(X1,X2,(-2*X2.^2) <0)
  13. title('Funkcja Lapunova dla wahadła - czwarty warunek')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement