Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function courbe(N)
- t = linspace(0, 2*%pi, N);
- x = 2 * cos(t);
- y = 2 * sin(t);
- x2 = linspace(-2, 2, N);
- y2 = exp(x2)
- plot(x, y);
- plot(x2, y2, 'r');
- endfunction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement