VectorFromScalar
Creates a vector from three scalar tables and stores the result in answer.
Inputs
- x
- A scalar value table.
- y
- A scalar value table.
- z
- A scalar value table.
- sysid
- A system ID or keyword (default = 0).
Outputs
- answer
- A vector value table.
Comments
- x, y, z, and answer must be real bound to the same entity type, and of the same domain (complex or real).
- sysid is a string containing an ID or keyword that defines the system
the vector will be created relative to:
- “0”: Global (the default)
- A positive integer: a system ID in the model
- “elem”: the elemental coordinate system
- “anal”: the nodal analysis system
- “ply”: the elemental ply system
- “mat”: the elemental material system
- If x is a constant value table (created by the Constant operator), no records will be added to the answer table.
- If a record cannot be found in all three input scalar tables, no vector will be created.
Syntax
VectorFromScalar(xs,ys,zs)XML Example
<call name="VectorFromScalar" x="xs_tab" y="ys_tab" z="zs_tab" answer="ans_tab" />