Public Function Mult( _
ByVal vX As Variant _
, ByVal vY As Variant _
) As Variant Mult(3.3, 4.76) = 15.708
Mult(5.2, "6|7") = "31.2|36.4"
Mult("-8|-9", 5) = "-40|-45"
Mult("1|2", "4|5") = "-6|13"See also: * Operator (Visual Basic)
Div FunctionvX: First of two numbers that are to be multiplied. 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 two numbers that are to be multiplied. 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.