Guest User

Untitled

a guest
Nov 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. YI = 1.6968467
  2. B1 = -0.1915674
  3. C = -1.8162469
  4.  
  5. def yoshida(i)
  6. C + YI / (1 + B1 * (i ** (-C)))
  7. end
  8.  
  9. (1..6).step(0.1).each do |i|
  10. puts "#{i}:\t\t\t\t#{yoshida(i)}"
  11. end
  12.  
  13. __END__
  14.  
  15. 1.0: 0.28268713605940676
  16. 1.1: 0.3810930023893453
  17. 1.2: 0.4979558391475163
  18. 1.3: 0.6376562991943244
  19. 1.4: 0.8062311611168134
  20. 1.5: 1.0122079163082829
  21. 1.6: 1.2680074021911742
  22. 1.7000000000000002: 1.5924212709177847
  23. 1.8: 2.0152639964107912
  24. 1.9: 2.58680579151636
  25. 2.0: 3.3989013562651422
  26. 2.1: 4.639137253745597
  27. 2.2: 6.759394636564507
  28. 2.3: 11.194210525907637
  29. 2.4000000000000004: 26.213076403643598
  30. 2.5: -146.06573981039682
  31. 2.6: -21.44095695040547
  32. 2.7: -12.1914001973843
  33. 2.8: -8.799166273171931
  34. 2.9000000000000004: -7.0405180266341185
  35. 3.0: -5.965654485287382
  36. 3.1: -5.241490712908672
  37. 3.2: -4.721016950862125
  38. 3.3000000000000003: -4.329287844016599
  39. 3.4000000000000004: -4.024087548573596
  40. 3.5: -3.7798231031686242
  41. 3.6: -3.5800769541646678
  42. 3.7: -3.413834107941261
  43. 3.8000000000000003: -3.27342938631132
  44. 3.9000000000000004: -3.153364476809449
  45. 4.0: -3.049593167871239
  46. 4.1: -2.959071970358705
  47. 4.2: -2.879467869326739
  48. 4.300000000000001: -2.808962638782594
  49. 4.4: -2.7461184407407466
  50. 4.5: -2.6897834291342004
  51. 4.6: -2.6390241242019097
  52. 4.7: -2.5930761006904794
  53. 4.800000000000001: -2.5513074543289465
  54. 4.9: -2.5131913440043157
  55. 5.0: -2.4782850843684483
  56. 5.1000000000000005: -2.4462140358770537
  57. 5.2: -2.4166590556254937
  58. 5.3: -2.389346623678597
  59. 5.4: -2.3640410024874274
  60. 5.5: -2.340537957398528
  61. 5.6000000000000005: -2.3186596874521257
  62. 5.7: -2.298250702940365
  63. 5.800000000000001: -2.2791744497829716
  64. 5.9: -2.2613105276104344
  65. 6.0: -2.2445523832887946
Add Comment
Please, Sign In to add comment