Mul
|
The * Function returns the product of its arguments. If no arguments
are specified, * returns one. The * Function forms the product of a variety of numeric data types and
one or more complex numbers as shown in the examples below. The product of xr + i xi
with yr + i yi is xr*yr - xi*yi + i (xr* yi + xi*yr). Usage The * function is used whenever it is necessary to compute the product of a set
of Numbers. Use the * function to multiply numeric data types where at least one of the
arguments is complex. Do not use if an immediate type, such as a real number,
would suffice. Since complex numbers are heap objects, they require more space
and operations on these types are slower than on immediate types. Complex
Complex
(* args...) Computes the product of all the Numbers(or Complex Types) in the argument list. If the argument list is empty,
the * function returns 1.
(* N1 N2) A complex number holding the product of N1, N2, etc.
Expression:
Arguments
Name
Type
Description Argument: args ... Number
Any Number Types
Returns:
Expression:
Arguments
Name
Type
Description Argument: N1 N2 Number
A numeric type.
Returns:
Here are a number of links to Lambda coding examples which contain this instruction in various use cases.
Here are the links to the data types of the function arguments.
Number | Integer | Complex |
Here are also a number of links to functions having arguments with any of these data types.
Analytic Information Server (AIS)AIS Component Systems
|