Advertisement
DaniilWild

Untitled

Nov 13th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. x = 0 : 0.4 : 48;
  2. y = sin( x );
  3. plot( x, y, 'c--')
  4. grid on;
  5. title( 'Area parallelogram' );
  6. xlabel( 'x coordinate' );
  7. ylabel( 'y coordinate' );
  8. text( 3, 0.6, '\leftarrow a*b*sin(x)' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement