specfunc-elementary.texi

来自「math library from gnu」· TEXI 代码 · 共 24 行

TEXI
24
字号
@cindex elementary operations@cindex multiplicationThe following functions allow for the propagation of errors whencombining quantities by multiplication.  The functions are declared inthe header file @file{gsl_sf_elementary.h}.@comment @deftypefun double gsl_sf_multiply (double @var{x}, double @var{y})@deftypefun int gsl_sf_multiply_e (double @var{x}, double @var{y}, gsl_sf_result * @var{result})This function multiplies @var{x} and @var{y} storing the product and itsassociated error in @var{result}.@comment Exceptional Return Values: GSL_EOVRFLW, GSL_EUNDRFLW@end deftypefun@deftypefun int gsl_sf_multiply_err_e (double @var{x}, double @var{dx}, double @var{y}, double @var{dy}, gsl_sf_result * @var{result})This function multiplies @var{x} and @var{y} with associated absoluteerrors @var{dx} and @var{dy}.  The product @c{$xy \pm xy \sqrt{(dx/x)^2 +(dy/y)^2}$} @math{xy +/- xy \sqrt((dx/x)^2 +(dy/y)^2)} is stored in @var{result}.@comment Exceptional Return Values: GSL_EOVRFLW, GSL_EUNDRFLW@end deftypefun

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?