home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / inc&ad2.0 / text_autodocs / mathieeesingtrans.doc < prev    next >
Text File  |  1992-09-01  |  9KB  |  440 lines

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