I just started using Mathematica. When doing the matrix calculation I encountered some problem, output is not evaluated instead it just gives the input as the output.
Example:
I just started using Mathematica. When doing the matrix calculation I encountered some problem, output is not evaluated instead it just gives the input as the output.
Example:
MatrixFormis an output wrapper that gets in the way of further evaluation. Use(A = {....}) // MatrixForminstead, soAis assigned the unmodified value and then that value is formatted for output by MatrixForm. – MarcoB Jun 09 '22 at 12:03Vas a list of lists to indicate a row vector. Mathematica does not need that distinction, so you can just writev = {0, 1, 0}. See also Row vectors and column vectors. – MarcoB Jun 09 '22 at 12:08