0
  1. Trang chủ >
  2. Công Nghệ Thông Tin >
  3. Kỹ thuật lập trình >

Tài liệu Special Functions part 7 pdf

Tài liệu Special Functions part 7 pdf

Tài liệu Special Functions part 7 pdf

... {y=3 .75 /ax;ans=(exp(ax)/sqrt(ax))*(0.39894228+y*(0.1328592e-1+y*(0.225319e-2+y*(-0.1 575 65e-2+y*(0.916281e-2+y*(-0.20 577 06e-1+y*(0.2635537e-1+y*(-0.16 476 33e-1+y*0.392 377 e-2))))))));}return ans;}#include <math.h>float ... precision.if ((ax=fabs(x)) < 3 .75 ) { Polynomial fit.y=x/3 .75 ;y*=y;ans=1.0+y*(3.5156229+y*(3.0899424+y*(1.20 674 92+y*(0.265 973 2+y*(0.36 076 8e-1+y*0.45813e-2)))));} else {y=3 .75 /ax;ans=(exp(ax)/sqrt(ax))*(0.39894228+y*(0.1328592e-1+y*(0.225319e-2+y*(-0.1 575 65e-2+y*(0.916281e-2+y*(-0.20 577 06e-1+y*(0.2635537e-1+y*(-0.16 476 33e-1+y*0.392 377 e-2))))))));}return ... fit.y=x*x/4.0;ans=(-log(x/2.0)*bessi0(x))+(-0. 577 21566+y*(0.42 278 420+y*(0.2306 975 6+y*(0.3488590e-1+y*(0.262698e-2+y*(0.1 075 0e-3+y*0 .74 e-5))))));} else {y=2.0/x;ans=(exp(-x)/sqrt(x))*(1.25331414+y*(-0 .78 32358e-1+y*(0.2189568e-1+y*(-0.1062446e-1+y*(0.5 878 72e-2+y*(-0.251540e-2+y*0.53208e-3))))));}return...
  • 5
  • 273
  • 0
Tài liệu Special Functions part 4 pdf

Tài liệu Special Functions part 4 pdf

... CDROMsvisit website http://www.nr.com or call 1-800- 872 -74 23 (North America only),or send email to trade@cup.cam.ac.uk (outside North America).where γ =0. 577 2156649 is Euler’s constant. We evaluate the ... expint");else {if (n == 0) ans=exp(-x)/x; Special case.else {if (x == 0.0) ans=1.0/nm1; Another special case.else {224Chapter 6. Special Functions Sample page from NUMERICAL RECIPES IN ... http://www.nr.com or call 1-800- 872 -74 23 (North America only),or send email to trade@cup.cam.ac.uk (outside North America).#include <math.h>#define EULER 0. 577 21566 Euler’s constant γ.#define...
  • 5
  • 283
  • 0
Tài liệu Special Functions part 6 pdf

Tài liệu Special Functions part 6 pdf

... (6.5.8).y=x*x;ans1 = -29 578 21389.0+y* (70 62834065.0+y*(-512359803.6+y*(10 879 881.29+y*(-863 27. 9 275 7+y*228.462 273 3))));ans2=40 076 544269.0+y* (74 5249964.8+y* (71 89466.438+y*( 474 47. 26 470 +y*(226.1030244+y*1.0))));ans=(ans1/ans2)+0.63661 977 2*bessj0(x)*log(x);} ... fit.y=x*x;ans1= 575 68490 574 .0+y*(-13362590354.0+y*(651619640 .7 +y*(-11214424.18+y* (77 392.330 17+ y*(-184.9052456)))));ans2= 575 68490411.0+y*(1029532985.0+y*(9494680 .71 8+y*(59 272 .64853+y*(2 67. 853 271 2+y*1.0))));ans=ans1/ans2;} ... (6.5.9).z=8.0/ax;y=z*z;xx=ax-0 .78 5398164;ans1=1.0+y*(-0.1098628627e-2+y*(0. 273 4510407e-4+y*(-0.2 073 370 639e-5+y*0.20938 872 11e-6)));ans2 = -0.1562499995e-1+y*(0.143048 876 5e-3+y*(-0.69111 476 51e-5+y*(0 .76 21095161e-6-y*0.934935152e -7) ));ans=sqrt(0.63661 977 2/ax)*(cos(xx)*ans1-z*sin(xx)*ans2);}return...
  • 7
  • 258
  • 0
Tài liệu Special Functions part 10 pdf

Tài liệu Special Functions part 10 pdf

... ttdt(6.9.6)Here γ ≈ 0. 577 2 is Euler’s constant. We only need a way to calculate the functions for x>0, becauseSi(−x)=−Si(x), Ci(−x)=Ci(x)−iπ (6.9 .7) Once again we can evaluate these functions by a ... error near a zero of Ci(x).#define EULER 0. 577 21566 Euler’s constant γ.#define MAXIT 100 Maximum number of iterations allowed.#define PIBY2 1. 570 7963 π/2.#define FPMIN 1.0e-30 Close to smallest ... limited by the precision of thelibrary routines for sine and cosine for large x.256Chapter 6. Special Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5)Copyright...
  • 5
  • 482
  • 0
Tài liệu Special Functions part 1 pptx

Tài liệu Special Functions part 1 pptx

... 1-800- 872 -74 23 (North America only),or send email to trade@cup.cam.ac.uk (outside North America).Chapter 6. Special Functions 6.0 IntroductionThere is nothing particularly special about a special ... the moniker. Special functions are sometimes called higher transcendental functions( higher than what?) or functionsof mathematicalphysics (but they occur inother fields also) or functions that ... second-orderdifferential equations (but not all special functions do). One might simply call them“useful functions and let it go at that; it is surely only a matter of taste which functions we have chosen to include...
  • 2
  • 258
  • 1
Tài liệu Special Functions part 2 doc

Tài liệu Special Functions part 2 doc

... enough.double x,y,tmp,ser;static double cof[6]= {76 .18009 172 9 471 46,-86.50532032941 677 ,24.01409824083091,-1.23 173 9 572 450155,0.1208650 973 866 179 e-2,-0.5395239384953e-5};int j;y=x=xx;tmp=x+5.5;tmp ... 1955,Approximations for Digital Computers(Princeton: Princeton University Press).Luke, Y.L. 1 975 ,Mathematical Functions and Their Approximations(New York: Academic Press).6.1 Gamma Function, Beta ... the complex gammafunction, everywhere in the half complex plane Re z>0.214Chapter 6. Special Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5)Copyright...
  • 4
  • 310
  • 1
Tài liệu Special Functions part 3 doc

Tài liệu Special Functions part 3 doc

... than1.2 × 10 7 .{float t,z,ans;z=fabs(x);t=1.0/(1.0+0.5*z);ans=t*exp(-z*z-1.26551223+t*(1.00002368+t*(0. 374 09196+t*(0.09 678 418+t*(-0.18628806+t*(0. 278 868 07+ t*(-1.13520398+t*(1.488515 87+ t*(-0.82215223+t*0. 170 872 77) ))))))));return ... t,z,ans;z=fabs(x);t=1.0/(1.0+0.5*z);ans=t*exp(-z*z-1.26551223+t*(1.00002368+t*(0. 374 09196+t*(0.09 678 418+t*(-0.18628806+t*(0. 278 868 07+ t*(-1.13520398+t*(1.488515 87+ t*(-0.82215223+t*0. 170 872 77) ))))))));return x >= 0.0 ? ans : 2.0-ans;}There are also some functions of two variables that are special cases of theincomplete gamma function:Cumulative ... or call 1-800- 872 -74 23 (North America only),or send email to trade@cup.cam.ac.uk (outside North America).Error FunctionThe error function and complementary error function are special cases...
  • 7
  • 287
  • 0
Tài liệu Special Functions part 11 pptx

Tài liệu Special Functions part 11 pptx

... order Numerical Recipes books,diskettes, or CDROMsvisit website http://www.nr.com or call 1-800- 872 -74 23 (North America only),or send email to trade@cup.cam.ac.uk (outside North America).}if ... 1 976 ,Journal of Research of the National Bureau of Standards,vol. 80B, pp. 291–311; 1981,op. cit., vol. 86, pp. 661–686.Abramowitz, M., and Stegun, I.A. 1964,Handbook of Mathematical Functions , ... tox/h,andx0≡n0h,x≡x−x0,andn≡n−n0,sothatF(x)≈1√πNn=−Nnodde−(x−nh)2n+ n0, (6.10.4)260Chapter 6. Special Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-43108-5)Copyright...
  • 3
  • 392
  • 0
Tài liệu Special Functions part 12 doc

Tài liệu Special Functions part 12 doc

... 19 87, Mathematics of Computation, vol. 49, pp. 595–606 [4]; 1988,op. cit., vol. 51,pp. 2 67 280 [5]; 1989,op. cit., vol. 53, pp. 3 27 333 [6]; 1991,op. cit., vol. 56, pp. 2 67 280. [7] Bulirsch, ... York), Chapter 17. [12]Mathews, J., and Walker, R.L. 1 970 ,Mathematical Methods of Physics, 2nd ed. (Reading, MA:W.A. Benjamin/Addison-Wesley), pp. 78 79 .6.12 Hypergeometric Functions As was ... Physics, vol. 3, no. 2, pp. 85– 87. [1]Cody, W.J., Pociorek, K.A., and Thatcher, H.C. 1 970 ,Mathematics of Computation, vol. 24,pp. 171178 . [2]McCabe, J.H. 1 974 ,Mathematics of Computation,...
  • 11
  • 271
  • 0
Tài liệu Special Functions part 13 docx

Tài liệu Special Functions part 13 docx

... 19 87, Mathematics of Computation, vol. 49, pp. 595–606 [4]; 1988,op. cit., vol. 51,pp. 2 67 280 [5]; 1989,op. cit., vol. 53, pp. 3 27 333 [6]; 1991,op. cit., vol. 56, pp. 2 67 280. [7] Bulirsch, ... York), Chapter 17. [12]Mathews, J., and Walker, R.L. 1 970 ,Mathematical Methods of Physics, 2nd ed. (Reading, MA:W.A. Benjamin/Addison-Wesley), pp. 78 79 .6.12 Hypergeometric Functions As was ... 2 67 280. [7] Bulirsch, R. 1965,Numerische Mathematik, vol. 7, pp. 78 –90; 1965,op. cit., vol. 7, pp. 353–354;1969,op. cit., vol. 13, pp. 305–315. [8]Carlson, B.C. 1 979 ,Numerische Mathematik, vol. 33, pp....
  • 3
  • 213
  • 0

Xem thêm

Từ khóa: tài liệu lịch sử lớp 7 bài 16 tt pdftài liệu giảng dạy toán 7tài liệu tăng tốc windows 7tài liệu về the part of tenstài liệu đại số lớp 7tài liệu tiếng anh lớp 7tài liệu về toán lớp 7tài liệu học môn toán 7tài liệu tin học lớp 7tài liệu anh văn lớp 7tài liệu mỹ thuật lớp 7tài liệu giáo án sinh 7tài liệu công nghệ lớp 7tài liệu địa lý khối 7tài liệu về internet explorer 7Báo cáo quy trình mua hàng CT CP Công Nghệ NPVchuyên đề điện xoay chiều theo dạngNghiên cứu tổ chức pha chế, đánh giá chất lượng thuốc tiêm truyền trong điều kiện dã ngoạiNghiên cứu tổ hợp chất chỉ điểm sinh học vWF, VCAM 1, MCP 1, d dimer trong chẩn đoán và tiên lượng nhồi máu não cấpGiáo án Sinh học 11 bài 13: Thực hành phát hiện diệp lục và carôtenôitGiáo án Sinh học 11 bài 13: Thực hành phát hiện diệp lục và carôtenôitĐỒ ÁN NGHIÊN CỨU CÔNG NGHỆ KẾT NỐI VÔ TUYẾN CỰ LY XA, CÔNG SUẤT THẤP LPWANNGHIÊN CỨU CÔNG NGHỆ KẾT NỐI VÔ TUYẾN CỰ LY XA, CÔNG SUẤT THẤP LPWAN SLIDETrả hồ sơ điều tra bổ sung đối với các tội xâm phạm sở hữu có tính chất chiếm đoạt theo pháp luật Tố tụng hình sự Việt Nam từ thực tiễn thành phố Hồ Chí Minh (Luận văn thạc sĩ)Nghiên cứu, xây dựng phần mềm smartscan và ứng dụng trong bảo vệ mạng máy tính chuyên dùngChuong 2 nhận dạng rui roKiểm sát việc giải quyết tố giác, tin báo về tội phạm và kiến nghị khởi tố theo pháp luật tố tụng hình sự Việt Nam từ thực tiễn tỉnh Bình Định (Luận văn thạc sĩ)Nguyên tắc phân hóa trách nhiệm hình sự đối với người dưới 18 tuổi phạm tội trong pháp luật hình sự Việt Nam (Luận văn thạc sĩ)Giáo án Sinh học 11 bài 14: Thực hành phát hiện hô hấp ở thực vậtGiáo án Sinh học 11 bài 14: Thực hành phát hiện hô hấp ở thực vậtGiáo án Sinh học 11 bài 14: Thực hành phát hiện hô hấp ở thực vậtGiáo án Sinh học 11 bài 14: Thực hành phát hiện hô hấp ở thực vậtTrách nhiệm của người sử dụng lao động đối với lao động nữ theo pháp luật lao động Việt Nam từ thực tiễn các khu công nghiệp tại thành phố Hồ Chí Minh (Luận văn thạc sĩ)Đổi mới quản lý tài chính trong hoạt động khoa học xã hội trường hợp viện hàn lâm khoa học xã hội việt namQUẢN LÝ VÀ TÁI CHẾ NHỰA Ở HOA KỲ