Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. z =
  2.  
  3. Columns 1 through 8
  4.  
  5. 0.0500 0.1500 0.2500 0.3500 0.4500 0.5500 0.6500 0.7500
  6.  
  7. Columns 9 through 11
  8.  
  9. 0.8500 0.9500 1.0500
  10.  
  11. for i=1:11,
  12. w(i) = erf(z(i))
  13. end
  14.  
  15. w =
  16.  
  17. Columns 1 through 8
  18.  
  19. 0.0564 0.1680 0.2763 0.3794 0.4755 0.5633 0.6420 0.7112
  20.  
  21. Columns 9 through 11
  22.  
  23. 0.7707 0.8209 0.8624
  24.  
  25. for i=1:11
  26. v(i) = c(1)*z(i)^10 + c(2)*z(i)^9 + c(3)*z(i)^8 + c(4)*z(i)^7 + c(5)*z(i)^6 + c(6)*z(i)^5 + c(7)*z(i)^4 + c(8)*z(i)^3 +c(9)*z(i)^2+c(10)*z(i)^1+c(11)*z(i)^0
  27. end
  28.  
  29. v =
  30.  
  31. Columns 1 through 8
  32.  
  33. 0.0564 0.1680 0.2763 0.3794 0.4755 0.5633 0.6420 0.7112
  34.  
  35. Columns 9 through 11
  36.  
  37. 0.7707 0.8209 0.8624
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement