home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / TRSICAT.LZX / CATS_CD2_TRSI / Inc&AD1.3 / Text_Autodocs / mathieeedoubtrans.doc < prev    next >
Encoding:
Text File  |  1992-09-12  |  7.7 KB  |  450 lines

  1. TABLE OF CONTENTS
  2.  
  3. mathieeedoubtrans.library/IEEEDPAcos
  4. mathieeedoubtrans.library/IEEEDPAsin
  5. mathieeedoubtrans.library/IEEEDPAtan
  6. mathieeedoubtrans.library/IEEEDPCos
  7. mathieeedoubtrans.library/IEEEDPCosh
  8. mathieeedoubtrans.library/IEEEDPExp
  9. mathieeedoubtrans.library/IEEEDPFieee
  10. mathieeedoubtrans.library/IEEEDPLog
  11. mathieeedoubtrans.library/IEEEDPLog10
  12. mathieeedoubtrans.library/IEEEDPPow
  13. mathieeedoubtrans.library/IEEEDPSin
  14. mathieeedoubtrans.library/IEEEDPSincos
  15. mathieeedoubtrans.library/IEEEDPSinh
  16. mathieeedoubtrans.library/IEEEDPSqrt
  17. mathieeedoubtrans.library/IEEEDPTan
  18. mathieeedoubtrans.library/IEEEDPTanh
  19. mathieeedoubtrans.library/IEEEDPTieee
  20.  
  21.  
  22. mathieeedoubtrans.library/IEEEDPAcos
  23.  
  24.    NAME
  25.     IEEEDPAcos -- compute the arc cosine of a number
  26.  
  27.    SYNOPSIS
  28.       x   = IEEEDPAcos(  y  );
  29.     d0/d1               d0/d1
  30.  
  31.     double    x,y;
  32.  
  33.    FUNCTION
  34.     Compute arc cosine of y in IEEE double precision
  35.  
  36.    INPUTS
  37.     y - IEEE double precision floating point value
  38.  
  39.    RESULT
  40.     x - IEEE double precision floating point value
  41.  
  42.    BUGS
  43.  
  44.    SEE ALSO
  45.     IEEEDPCos(), IEEEDPAtan(), IEEEDPAsin()
  46.  
  47. mathieeedoubtrans.library/IEEEDPAsin
  48.  
  49.    NAME
  50.     IEEEDPAsin -- compute the arcsine of a number
  51.  
  52.    SYNOPSIS
  53.       x   = IEEEDPAsin(  y  );
  54.     d0/d1               d0/d1
  55.  
  56.     double    x,y;
  57.  
  58.    FUNCTION
  59.     Compute the arc sine of y in IEEE double precision
  60.  
  61.    INPUTS
  62.     y - IEEE double precision floating point value
  63.  
  64.    RESULT
  65.     x - IEEE double precision floating point value
  66.  
  67.    BUGS
  68.  
  69.    SEE ALSO
  70.     IEEEDPSin(), IEEEDPAtan(), IEEEDPAcos()
  71.  
  72. mathieeedoubtrans.library/IEEEDPAtan
  73.  
  74.    NAME
  75.     IEEEDPAtan -- compute the arctangent of a floating point number
  76.  
  77.    SYNOPSIS
  78.       x   = IEEEDPAtan(  y  );
  79.     d0/d1           d0/d1
  80.  
  81.     double    x,y;
  82.  
  83.    FUNCTION
  84.     Compute arctangent of y in IEEE double precision
  85.  
  86.    INPUTS
  87.     y - IEEE double precision floating point value
  88.  
  89.    RESULT
  90.     x - IEEE double precision floating point value
  91.  
  92.    BUGS
  93.  
  94.    SEE ALSO
  95.     IEEEDPTan(), IEEEDPAsin(), IEEEDPACos()
  96.  
  97. mathieeedoubtrans.library/IEEEDPCos
  98.  
  99.    NAME
  100.     IEEEDPCos -- compute the cosine of a floating point number 
  101.  
  102.    SYNOPSIS
  103.       x   = IEEEDPCos(  y  );
  104.     d0/d1           d0/d1
  105.  
  106.     double    x,y;
  107.  
  108.    FUNCTION
  109.     Compute cosine of y in IEEE double precision
  110.  
  111.    INPUTS
  112.     y - IEEE double precision floating point value
  113.  
  114.    RESULT
  115.     x - IEEE double precision floating point value
  116.  
  117.    BUGS
  118.  
  119.    SEE ALSO
  120.     IEEEDPAcos(), IEEEDPSin(), IEEEDPTan()
  121.  
  122. mathieeedoubtrans.library/IEEEDPCosh
  123.  
  124.    NAME
  125.     IEEEDPCosh -- compute the hyperbolic cosine of a floating point number 
  126.  
  127.    SYNOPSIS
  128.       x   = IEEEDPCosh(  y  );
  129.     d0/d1           d0/d1
  130.  
  131.     double    x,y;
  132.  
  133.    FUNCTION
  134.     Compute hyperbolic cosine of y in IEEE double precision
  135.  
  136.    INPUTS
  137.     y - IEEE double precision floating point value
  138.  
  139.    RESULT
  140.     x - IEEE double precision floating point value
  141.  
  142.    BUGS
  143.  
  144.    SEE ALSO
  145.     IEEEDPSinh(), IEEEDPTanh()
  146.  
  147. mathieeedoubtrans.library/IEEEDPExp
  148.  
  149.    NAME
  150.     IEEEDPExp -- compute the exponential of e
  151.  
  152.    SYNOPSIS
  153.       x   = IEEEDPExp(  y  );
  154.     d0/d1              d0/d1
  155.  
  156.     double    x,y;
  157.  
  158.    FUNCTION
  159.     Compute e^y in IEEE double precision
  160.  
  161.    INPUTS
  162.     y - IEEE double precision floating point value
  163.  
  164.    RESULT
  165.     x - IEEE double precision floating point value
  166.  
  167.    BUGS
  168.  
  169.    SEE ALSO
  170.     IEEEDPLog()
  171.  
  172. mathieeedoubtrans.library/IEEEDPFieee
  173.  
  174.    NAME
  175.     IEEEDPFieee -- convert IEEE single to IEEE double
  176.  
  177.    SYNOPSIS
  178.       x   = IEEEDPFieee(  y  );
  179.     d0/d1                  d0
  180.  
  181.     float    y;
  182.     double  x;
  183.  
  184.    FUNCTION
  185.     Convert IEEE single precision number to IEEE double precision.
  186.  
  187.    INPUTS
  188.     y - IEEE single precision floating point value
  189.  
  190.    RESULT
  191.     x - IEEE double precision floating point value
  192.  
  193.    BUGS
  194.  
  195.    SEE ALSO
  196.     IEEEDPTieee()
  197.  
  198. mathieeedoubtrans.library/IEEEDPLog
  199.  
  200.    NAME
  201.     IEEEDPLog -- compute the natural logarithm of a floating point number
  202.  
  203.    SYNOPSIS
  204.       x   = IEEEDPLog(  y  );
  205.     d0/d1              d0/d1
  206.  
  207.     double    x,y;
  208.  
  209.    FUNCTION
  210.     Compute ln(y) in IEEE double precision
  211.  
  212.    INPUTS
  213.     y - IEEE double precision floating point value
  214.  
  215.    RESULT
  216.     x - IEEE double precision floating point value
  217.  
  218.    BUGS
  219.  
  220.    SEE ALSO
  221.     IEEEDPExp()
  222.  
  223. mathieeedoubtrans.library/IEEEDPLog10
  224.  
  225.    NAME
  226.     IEEEDPLog10 -- compute logarithm base 10 of a number
  227.  
  228.    SYNOPSIS
  229.       x   = IEEEDPLog10(  y  );
  230.     d0/d1                d0/d1
  231.  
  232.     double    x,y;
  233.  
  234.    FUNCTION
  235.     Compute the logarithm base 10 of y in IEEE double precision
  236.  
  237.    INPUTS
  238.     y - IEEE double precision floating point value
  239.  
  240.    RESULT
  241.     x - IEEE double precision floating point value
  242.  
  243.    BUGS
  244.  
  245.    SEE ALSO
  246.     IEEEDPLog()
  247.  
  248. mathieeedoubtrans.library/IEEEDPPow
  249.  
  250.    NAME
  251.     IEEEDPPow -- raise a number to another number power
  252.  
  253.    SYNOPSIS
  254.       z   = IEEEDPPow(  x  ,  y  );
  255.     d0/d1              d2/d3 d0/d1
  256.  
  257.     double    x,y,z;
  258.  
  259.    FUNCTION
  260.     Compute y^x in IEEE double precision
  261.  
  262.    INPUTS
  263.     x - IEEE double precision floating point value
  264.     y - IEEE double precision floating point value
  265.  
  266.    RESULT
  267.     z - IEEE double precision floating point value
  268.  
  269.    BUGS
  270.  
  271.    SEE ALSO
  272.  
  273. mathieeedoubtrans.library/IEEEDPSin
  274.  
  275.    NAME
  276.     IEEEDPSin -- compute the sine of a floating point number
  277.  
  278.    SYNOPSIS
  279.       x   = IEEEDPSin(  y  );
  280.     d0/d1          d0/d1
  281.  
  282.     double    x,y;
  283.  
  284.    FUNCTION
  285.     Compute sine of y in IEEE double precision
  286.  
  287.    INPUTS
  288.     y - IEEE double precision floating point value
  289.  
  290.    RESULT
  291.     x - IEEE double precision floating point value
  292.  
  293.    BUGS
  294.  
  295.    SEE ALSO
  296.     IEEEDPAsin(), IEEEDPTan(), IEEEDPCos()
  297.  
  298. mathieeedoubtrans.library/IEEEDPSincos
  299.  
  300.    NAME
  301.     IEEEDPSincos -- compute the arc tangent of a floating point number 
  302.  
  303.    SYNOPSIS
  304.       x   = IEEEDPSincos( z ,  y  );
  305.     d0/d1             a0  d0/d1
  306.  
  307.     double    x,y,*z;
  308.  
  309.    FUNCTION
  310.     Compute sin and cosine of y in IEEE double precision.
  311.     Store the cosine in *z. Return the sine of y.
  312.  
  313.    INPUTS
  314.     y - IEEE double precision floating point value
  315.     z - pointer to IEEE double precision floating point number
  316.  
  317.    RESULT
  318.     x - IEEE double precision floating point value
  319.  
  320.    BUGS
  321.  
  322.    SEE ALSO
  323.     IEEEDPSin(), IEEEDPCos()
  324.  
  325. mathieeedoubtrans.library/IEEEDPSinh
  326.  
  327.    NAME
  328.     IEEEDPSinh -- compute the hyperbolic sine of a floating point number 
  329.  
  330.    SYNOPSIS
  331.       x   = IEEEDPSinh(  y  );
  332.     d0/d1           d0/d1
  333.  
  334.     double    x,y;
  335.  
  336.    FUNCTION
  337.     Compute hyperbolic sine of y in IEEE double precision
  338.  
  339.    INPUTS
  340.     y - IEEE double precision floating point value
  341.  
  342.    RESULT
  343.     x - IEEE double precision floating point value
  344.  
  345.    BUGS
  346.  
  347.    SEE ALSO
  348.     IEEEDPCosh, IEEEDPTanh
  349.  
  350. mathieeedoubtrans.library/IEEEDPSqrt
  351.  
  352.    NAME
  353.     IEEEDPSqrt -- compute the square root of a number
  354.  
  355.    SYNOPSIS
  356.       x   = IEEEDPSqrt(  y  );
  357.     d0/d1                d0/d1
  358.  
  359.     double    x,y;
  360.  
  361.    FUNCTION
  362.     Compute square root of y in IEEE double precision
  363.  
  364.    INPUTS
  365.     y - IEEE double precision floating point value
  366.  
  367.    RESULT
  368.     x - IEEE double precision floating point value
  369.  
  370.    BUGS
  371.  
  372.    SEE ALSO
  373.  
  374. mathieeedoubtrans.library/IEEEDPTan
  375.  
  376.    NAME
  377.     IEEEDPTan -- compute the tangent of a floating point number 
  378.  
  379.    SYNOPSIS
  380.       x   = IEEEDPTan(  y  );
  381.     d0/d1          d0/d1
  382.  
  383.     double    x,y;
  384.  
  385.    FUNCTION
  386.     Compute tangent of y in IEEE double precision
  387.  
  388.    INPUTS
  389.     y - IEEE double precision floating point value
  390.  
  391.    RESULT
  392.     x - IEEE double precision floating point value
  393.  
  394.    BUGS
  395.  
  396.    SEE ALSO
  397.     IEEEDPAtan(), IEEEDPSin(), IEEEDPCos()
  398.  
  399. mathieeedoubtrans.library/IEEEDPTanh
  400.  
  401.    NAME
  402.     IEEEDPTanh -- compute the hyperbolic tangent of a floating point number 
  403.  
  404.    SYNOPSIS
  405.       x   = IEEEDPTanh(  y  );
  406.     d0/d1           d0/d1
  407.  
  408.     double    x,y;
  409.  
  410.    FUNCTION
  411.     Compute hyperbolic tangent of y in IEEE double precision
  412.  
  413.    INPUTS
  414.     y - IEEE double precision floating point value
  415.  
  416.    RESULT
  417.     x - IEEE double precision floating point value
  418.  
  419.    BUGS
  420.  
  421.    SEE ALSO
  422.     IEEEDPSinh(), IEEEDPCosh()
  423.  
  424. mathieeedoubtrans.library/IEEEDPTieee
  425.  
  426.    NAME
  427.     IEEEDPTieee -- convert IEEE double to IEEE single
  428.  
  429.    SYNOPSIS
  430.       x   = IEEEDPTieee(  y  );
  431.      d0                d0/d1
  432.  
  433.     double    y;
  434.     float   x;
  435.  
  436.    FUNCTION
  437.     Convert IEEE double precision number to IEEE single precision.
  438.  
  439.    INPUTS
  440.     y - IEEE double precision floating point value
  441.  
  442.    RESULT
  443.     x - IEEE single precision floating point value
  444.  
  445.    BUGS
  446.  
  447.    SEE ALSO
  448.     IEEEDPFieee()
  449.  
  450.