Basic
BooleanToAnything - It converts a Boolean input token to any data type.
BitsToInt - It converts 32 successive binary inputs into a two’s complement integer.
IntToBits - It converts an input integer into 32 successive binary outputs.
DoubleToFix - It converts a double into a fix point number with a specific precision, using a specific quantization strategy.
FixToDouble
- It converts a fix point into a double, by first setting the precision
of the fix point to the supplied precision, using a specific
quantization strategy.
FixToFix
- It converts a fix point into another fix point with possibly a
different precision, using a specific quantizer and overflow strategy.
Int_Long_to_Double - It converts an integer or long to double.
InUnitsOf - It converts input tokens to specified units by dividing the input by the value of the units parameter
Round
- It produces an output token with a value that is a rounded version of
the input. The rounding method is specified by the function attribute-
ceil, floor, round, and truncate.
TokenToExpression - It reads a Token on the input port and output a string expression on the output port.
Complex
ComplexToPolar
- It converts a token representing a complex number into two tokens
representing its polar form (which are output on angle and magnitude).
PolarToComplex
- It converts two tokens representing polar coordinates (a token on
angle and a token on magnitude) to a token representing their complex
form.
ComplexToCartesian
- It converts a token representing a complex number into its Cartesian
components (which are output on real and image).
CartesianToComplex
- It converts two tokens representing the real and imaginary of a
complex number into their complex representation.
PolarToCartesian
- It converts two tokens representing a polar coordinate (a token on
angle and a token on magnitude) to two tokens representing their
Cartesian form (which are output on x and y).
CartesianToPolar
- It converts a Cartesian pair (a token on the x input and a token on
the y input) to two tokens representing its polar form (which are
output on angle and magnitude).
String
Number_to_String - It converts the incoming number into a string.
String_to_Number - It converts a string to a number using the constraint in the parameter.
ImageToString - This actor reads an input and writes out a StringToken.
Replace_String - It takes the incoming string and performs a find and replace operation.
Array and Matrix
IntArrayToString - It converts an integer-array into a string.
StringToIntArray - It converts a string to an integer-array.
StringToUnsignedByteArray - It converts an input of type string to an array of type unsignedByte.
UnsignedByteArrayToString - It converts an array of bytes into a string.
ArrayToElements - It disassembles an ArrayToken to a multiport output.
ArrayToSequence - It Extracts all elements from an input array and produce them sequentially on the output port.
MatrixToSequence - Unbundle a matrix into a sequence of output tokens.
ElementsToArray - It reads exactly one token from each channel of the input port and assemble the tokens into an ArrayToken.
SequenceToArray - Collect a sequence of inputs into an array and produce the array on the output port.
SequenceToMatrix - Bundle a specified number of input tokens into a matrix.
DoubleToMatrix - It converts a sequence of inputs into a Matrix.
MatrixToDouble - It converts a Matrix into a sequence of inputs.
JSONToToken - It converts a JSON into a data structure.
TokenToJSON - It converts a token (typically data structure) into a JSON token.
Created with the Personal Edition of HelpNDoc: Free help authoring environment