Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. xc = (1/2) .* (1-cos(theta))
  2. zc = zeros(1,21);
  3. i=1;
  4. while xc(i)<=0.2025
  5. zc(i) = 2.6595*xc(i)*(xc(i)^2 - 0.6075*xc(i) + 0.1147);
  6. i = i+1;
  7. end
  8. while i<=21
  9. zc(i) = 0.02208*(1-xc(i));
  10. i = i+1;
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement