VECTORDEF: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
Defines two vectors <code>u</code> and <code>v</code> and assigns a value to <code>v</code>. In expression evaluation, iMath will treat the vectors as non-commutative, that is, <code>u v ≠ v u</code>. | Defines two vectors <code>u</code> and <code>v</code> and assigns a value to <code>v</code>. In expression evaluation, iMath will treat the vectors as non-commutative, that is, <code>u v ≠ v u</code>. | ||
|4= | |||
[[MATRIXDEF]] | |||
}} | }} | ||
[[Category:Definition]] | [[Category:Definition]] |
Revision as of 19:41, 27 June 2017
Syntax
VECTORDEF symbol
@label@ { options } VECTORDEF [*] symbol = expression
Implemented in iMath since version 2.2.0 or earlier.
Explanation
Defines the symbol to be a vector. This is important because vectors are non-commutative when evaluating an expression.
The second form is a shortcut for the combination of VECTORDEF
and EQDEF
. It defines the symbol and creates an equation defining its value.
Example
VECTORDEF v
VECTORDEF u = STACK{ a # b # c }
Defines two vectors u
and v
and assigns a value to v
. In expression evaluation, iMath will treat the vectors as non-commutative, that is, u v ≠ v u
.