contentsconceptssyntaxlibrariessampleserrorsindex
Full text search
function   FP_div    
  Related Syntax     Other Library Functions  

Library: Floating Point
Include: omfloat.xin
Returns: Opaque

The quotient resulting from the division of two floating point numbers.

Declaration

  define external float function FP_div (value float x, value float y) 


Purpose

Divides two floating point numbers and returns the quotient. Overflow and underflow values will return infinity and zero, respectively. Division by zero returns "not a number" (NaN).

This sample shows how to use the basic floating point arithmetic function FP_div, as well as FP_add .

  define external float function FP_add (value float x, value float y)
  define external float function FP_div (value float x, value float y)
  . . .

  set result to FP_add(x,y)
  ; adds x and y

  set speed to FP_div(distance,time)
  ; divides distance by time to determine speed

    Related Syntax
   FP_add
   FP_sub
   FP_mul
   FP_neg
 
  Other Library Functions
   FP_abs
   FP_acos
   FP_add
   FP_asin
   FP_atan
   FP_atan2
   FP_ceil
   FP_cos
   FP_cosh
   FP_d
   FP_div
   FP_eq
   FP_exp
   FP_floor
   FP_ge
   FP_gt
   FP_hypot
   FP_isnan
   FP_isneg
   FP_ispos
   FP_iszero
   FP_j0
   FP_j1
   FP_jn
   FP_le
   FP_log
   FP_log10
   FP_lt
   FP_mod
   FP_mul
   FP_ne
   FP_nearest
   FP_neg
   FP_pow
   FP_s
   FP_sin
   FP_sinh
   FP_sqrt
   FP_sub
   FP_tan
   FP_tanh
   FP_trunc
   FP_v
   FP_y0
   FP_y1
   FP_yn
 
----  

Top [CONTENTS] [CONCEPTS] [SYNTAX] [LIBRARIES] [SAMPLES] [ERRORS] [INDEX]

Generated: April 21, 1999 at 2:01:05 pm
If you have any comments about this section of the documentation, send email to [email protected]

Copyright © OmniMark Technologies Corporation, 1988-1999.