The Vector 3D Magnitude component take the components of a single 3D vector (x,y and z) and computes the magnitude. The operation can be stated as: mag = squareroot(x^2+y^2+z^2). The output is a single scalar value of type double.
Inputs: 4
Input Name:
Description:
Enabled
Boolean input of 1 or 0, ON or OFF, enabling or disabling computation on the provided inputs. Default is ON.
x
The input value of type double that is the x component of the 3D vector.
y
The input value of type double that is the y component of the 3D vector.
z
The input value of type double that is the z component of the 3D vector.
Outputs: 1
Output Name:
Description:
Magnitude (m)
The output of type double that is the computed magnitude of the provided xyz 3D Vector.