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

Tài liệu Evaluation of Functions part 10 pptx

Tài liệu Evaluation of Functions part 10 pptx

Tài liệu Evaluation of Functions part 10 pptx

... degree of approximation (length of cto be used), this routine returns the arraycint[0 n-1],theChebyshev coefficients of the integral of the function whose coefficients arec. The constant of integration ... routinechebft§5.8,andgivenn, the desired degree of approximation (length of cto be used), this routine returns the arraycder[0 n-1],theChebyshev coefficients of the derivative of the function whose coefficients ... less accuracy than the roundoff limit of your machine.You get the g’s in equation (5 .10. 1) from the c’s output from chebft (suitablytruncated at a modest value of m)bycallinginsequencethefollowingtwoprocedures:#include...
  • 3
  • 330
  • 0
Tài liệu Evaluation of Functions part 3 pptx

Tài liệu Evaluation of Functions part 3 pptx

... precision, say 10 −7or 10 −15. The parameter tinyshould be less than typical values of eps|bj|,say10−30.The above algorithm assumes that you can terminate the evaluation of thecontinued ... 1970,Mathematical Methods of Physics, 2nd ed. (Reading, MA:W.A. Benjamin/Addison-Wesley),§2.3. [2]5.2 Evaluation of Continued FractionsContinued fractions are often powerful ways of evaluating functions ... as good as other methods.170Chapter 5. Evaluation of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright (C) 1988-1992 by Cambridge...
  • 5
  • 388
  • 0
Tài liệu Evaluation of Functions part 4 pptx

Tài liệu Evaluation of Functions part 4 pptx

... the evaluation: double ratval(double x, double cof[], int mm, int kk)Givenmm,kk,andcof[0 mm+kk], evaluate and return the rational function (cof[0]+cof[1]x+ ···+cof[mm]xmm)/(1 +cof[mm+1]x+ ... (j=nv;j<=n;j++) r[j]=0.0;}176Chapter 5. Evaluation of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright (C) 1988-1992 by Cambridge ... think, because software companiesassign inexperienced programmers to what they believe to be the perfectly trivialtask of implementing complex arithmetic.174Chapter 5. Evaluation of Functions Sample...
  • 4
  • 355
  • 0
Tài liệu Evaluation of Functions part 6 pptx

Tài liệu Evaluation of Functions part 6 pptx

... combination of J0and J1, which are of order unity.180Chapter 5. Evaluation of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright ... ±√b2− 4ac2a(5.6.2)182Chapter 5. Evaluation of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright (C) 1988-1992 by Cambridge ... Quadratic and Cubic EquationsThe roots of simple algebraic equations can be viewed as being functions of theequations’ coefficients. We are taught these functions in elementary algebra. Yet,surprisingly...
  • 6
  • 318
  • 0
Tài liệu Integration of Functions part 6 pptx

Tài liệu Integration of Functions part 6 pptx

... polynomial of one lower order.z1=z;z=z1-p1/pp; Newton’s formula.156Chapter 4. Integration of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright ... i.e., the computation of the coefficients aj, bjin (4.5.6); (ii) the determination of the zeros of pN(x),andthe computation of the associated weights. For the case of the “classical” orthogonalpolynomials, ... numerical stability is greatly improved if,instead of using powers of x as a set of basis functions to represent the pj’s, one uses someother known set of orthogonal polynomials πj(x), say. Roughly...
  • 15
  • 393
  • 0
Tài liệu Integration of Functions part 7 pptx

Tài liệu Integration of Functions part 7 pptx

... York:Wiley),§§2.9–2 .10. Ralston, A., and Rabinowitz, P. 1978,A First Course in Numerical Analysis, 2nd ed. (New York:McGraw-Hill),§§4.4–4.8.4.6 Multidimensional IntegralsIntegrals of functions of several ... the number of functionevaluations needed to sample an N-dimensional space increases as the Nth power of the number needed to do a one-dimensional integral. If you need 30 functionevaluations ... Currentvalues of x and y, and the pointer to your function func, are passed “over the head” of the intermediate calls through static top-level variables.164Chapter 4. Integration of Functions Sample...
  • 4
  • 306
  • 0
Tài liệu Evaluation of Functions part 2 doc

Tài liệu Evaluation of Functions part 2 doc

... large x.Accelerating the Convergence of SeriesThere are several tricks for accelerating the rate of convergence of a series (or,equivalently, of a sequence of partial sums). These tricks will not ... America).Chapter 5. Evaluation of Functions 5.0 IntroductionThe purpose of this chapter is to acquaint you with a selection of the techniquesthat are frequently used in evaluating functions. In Chapter ... Similarly, the form of the coefficients a is often such as to makeuse of previous work: Terms like k! or (2k)! can be updated in a multiply or two.165168Chapter 5. Evaluation of Functions Sample...
  • 5
  • 347
  • 0
Tài liệu Evaluation of Functions part 11 pdf

Tài liệu Evaluation of Functions part 11 pdf

... 198Chapter 5. Evaluation of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright (C) 1988-1992 by Cambridge ... Mathe-matical Association of America), pp. 59, 182–183 [synthetic division].5.11 Economization of Power SeriesOne particular application of Chebyshev methods, the economization of power series,isan ... 10 −7is x13/(27!). This then approximates the error of the finite series whose last term is x12/(25!).Notice that because of the large exponent in x13, the error is much smaller than 10 −7everywherein...
  • 2
  • 488
  • 0
Tài liệu Evaluation of Functions part 12 doc

Tài liệu Evaluation of Functions part 12 doc

... 200Chapter 5. Evaluation of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright (C) 1988-1992 by Cambridge ... be.chebpc(c,d,NFEW);pcshft(a,b,d,NFEW);In our example, by the way, the 8th through 10th Chebyshev coefficients turn out tobe on the order of −7 × 10 −6, 3 × 10 −7,and−9 10 −9, so reasonable truncations (forsingle precision ... ≡Mk=0akxk1+Nk=1bkxk(5.12.1)198Chapter 5. Evaluation of Functions Sample page from NUMERICAL RECIPES IN C: THE ART OF SCIENTIFIC COMPUTING (ISBN 0-521-4 3108 -5)Copyright (C) 1988-1992 by Cambridge...
  • 3
  • 315
  • 0

Xem thêm

Từ khóa: Nghiên cứu sự biến đổi một số cytokin ở bệnh nhân xơ cứng bì hệ thốngBáo cáo quy trình mua hàng CT CP Công Nghệ NPVchuyên đề điện xoay chiều theo dạngMột số giải pháp nâng cao chất lượng streaming thích ứng video trên nền giao thức HTTPNghiên cứu tổ chức chạy tàu hàng cố định theo thời gian trên đường sắt việt namBiện pháp quản lý hoạt động dạy hát xoan trong trường trung học cơ sở huyện lâm thao, phú thọGiá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ô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ôitPhát triển mạng lưới kinh doanh nước sạch tại công ty TNHH một thành viên kinh doanh nước sạch quảng ninhTrả 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ĩ)Phát triển du lịch bền vững trên cơ sở bảo vệ môi trường tự nhiên vịnh hạ longNghiên cứu khả năng đo năng lượng điện bằng hệ thu thập dữ liệu 16 kênh DEWE 5000Sở hữu ruộng đất và kinh tế nông nghiệp châu ôn (lạng sơn) nửa đầu thế kỷ XIXKiể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ậtMÔN TRUYỀN THÔNG MARKETING TÍCH HỢP