Advertisement
Guest User

Untitled

a guest
Mar 20th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. % Noah Hulme
  2. % 26890038
  3. % 21 / 03 / 2017 last modified
  4.  
  5. clear all, close all, clc
  6.  
  7. t_min = input('please provide a minimium value of t: ')
  8. t_max = input('please provide a maximum value of t: ')
  9.  
  10. t = [t_min : 0.01 : t_max];
  11.  
  12. %x = sin(t) * (exp(cos(t)) - 2 * cos(4t) - (sin(t/12))^5
  13.  
  14. %y = cos(t) * (exp(cos(t)) - 2 * cos(4t) - (sin(t/12))^5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement