Advertisement
Guest User

Untitled

a guest
Apr 21st, 2025
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. a = 1;
  2. b = 1;
  3. c = 1;
  4. f = function(x) a*(exp(1)^(-b*(exp(1)^(-c*x))));
  5.  
  6. polygon([
  7.     [-10, 0],
  8.     for (x = [-10:0.1:10]) [x, 5 + f(x)],
  9.     for (x = [10:-0.1:-10]) [x, -5 - f(x)],
  10.     [-10, 0],
  11. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement