In model declaration, we can create model-local variables:
- Code: Select all
# VARIABLE_NAME = MODEL_EXPRESSION;
Some of my local variables are solved for from a linear equation system, and I want to apply Cramer's rule directly in the local variable declaration. So I wonder if it is possible to define matrix in
- Code: Select all
# VARIABLE_NAME = MODEL_EXPRESSION;
and it is possible to compute their determinant. If it is, how?
Thanks!