2using System.Threading.Tasks;
38 throw new ScriptRuntimeException(
"Matrix column vector assignment can only be performed on matrices.",
this);
49 if (M.Rows != V.Dimension)
52 M.SetColumn((
int)d, V);
69 throw new ScriptRuntimeException(
"Matrix column vector assignment can only be performed on matrices.",
this);
80 if (M.Rows != V.Dimension)
83 M.SetColumn((
int)d, V);
Script runtime exception.
Class managing a script expression.
ScriptNode RightOperand
Right operand.
ScriptNode LeftOperand
Left operand.
ScriptNode right
Right operand.
ScriptNode left
Left operand.
bool isAsync
If subtree is asynchroneous.
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
int Start
Start position in script expression.
abstract IElement Evaluate(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection. This method should be ...
virtual Task< IElement > EvaluateAsync(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection. This method should be ...
Base class for all ternary operators.
ScriptNode middle
Middle operand.
Matrix Column Assignment operator.
override async Task< IElement > EvaluateAsync(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection.
override IElement Evaluate(Variables Variables)
Evaluates the node, using the variables provided in the Variables collection.
MatrixColumnAssignment(ColumnVector MatrixColumn, ScriptNode Operand, int Start, int Length, Expression Expression)
Matrix Column Assignment operator.
Basic interface for all types of elements.
object AssociatedObjectValue
Associated object value.
Basic interface for matrices.
Basic interface for vectors.