comparison src/quad.cc @ 1330:41c6ffb66c01

[project @ 1995-08-24 01:12:31 by jwe]
author jwe
date Thu, 24 Aug 1995 01:12:31 +0000
parents 13b630c0aad3
children 19c10b8657d5
comparison
equal deleted inserted replaced
1329:13b630c0aad3 1330:41c6ffb66c01
92 y = f (x) 92 y = f (x)
93 \n\ 93 \n\
94 where y and x are scalars.\n\ 94 where y and x are scalars.\n\
95 \n\ 95 \n\
96 The second and third arguments are limits of integration. Either or\n\ 96 The second and third arguments are limits of integration. Either or\n\
97 both may be infinite. The optional argument TOL specifies the desired\n\ 97 both may be infinite.\n\
98 accuracy of the result. The optional argument SING is a vector of\n\ 98 \n\
99 at which the integrand is singular.") 99 The optional argument tol is a vector that specifies the desired\n\
100 accuracy of the result. The first element of the vector is the desired\n\
101 absolute tolerance, and the second element is the desired relative\n\
102 tolerance.\n\
103 \n\
104 The optional argument @var{sing} is a vector of values at which the\n\
105 integrand is singular.")
100 { 106 {
101 Octave_object retval; 107 Octave_object retval;
102 108
103 int nargin = args.length (); 109 int nargin = args.length ();
104 110