Advertisement
Ostu

Untitled

Oct 24th, 2023
1,071
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.22 KB | None | 0 0
  1. % Jakub Ostrowski, witam w moim sprawozdaniu z zadania 1
  2.  
  3. x = 0:0.01:2*pi;
  4.  
  5. figure(1)
  6.  
  7. y = sin(x);
  8.  
  9. plot(x,y)
  10. grid on
  11. xlim([0 6.3])
  12. xlabel('Oƛ X')
  13. ylabel('Oƛ Y')
  14.  
  15. title('Wykres na zaliczenie - 46894, L2, 18.10.23')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement