<-- Previous || Up || Next -->

Min 3 Complex Function
Math Complex Class

Public Function Min3Complex( _
      ByVal vX As Variant _
    , ByVal vY As Variant _
    , ByVal vZ As Variant _
    ) As Variant

"Minimum Of Three Numbers"
Minimum of three Real and/or Complex numbers.
Returns the leftmost of the minimum arguments if all arguments are real numbers.

Examples:
    Min3Complex(2, 3, 4) = 2
    Min3Complex(2, "3.4|4.5", 5) = "8.60671992287698E-02|1.125"
    Min3Complex("4.6|3.2", "3.4|4.5", "4.7|3") = "3.00861831033374|3.425"
See also:
    Min3Variant Function
    Min2Complex Function
    Max3Complex Function
Note: This function supports three-valued logic, but it does not support string arguments.

vX: First of three numeric arguments, the minimum of which will be returned. Function returns Null if vX is Null or cannot be fixed up to a real or complex number (as defined by the ComplexStringToReals function). Complex numbers are represented within strings as "R|I" where R is the real part and I is the imaginary part.

vY: Second of three numeric arguments, the minimum of which will be returned. Function returns Null if vY is Null or cannot be fixed up to a real or complex number.

vZ: Third of three numeric arguments, the minimum of which will be returned. Function returns Null if vY is Null or cannot be fixed up to a real or complex number.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.