Advertisement
ForeverStrong

Serduszko

Feb 13th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.13 KB | None | 0 0
  1. clc
  2. clear all
  3. x = -2:0.1:2;
  4.  
  5. y1= sqrt(1-(((abs(x)-1)).^2));
  6. y2 = (tan(abs(x)-1))-1.7;
  7.  
  8. plot(x,y1,'b')
  9. hold on
  10. plot(x,y2,'b')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement