0

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:

Example problem

  • 1
    MatrixForm is an output wrapper that gets in the way of further evaluation. Use (A = {....}) // MatrixForm instead, so A is assigned the unmodified value and then that value is formatted for output by MatrixForm. – MarcoB Jun 09 '22 at 12:03
  • Yes, This solved the issue. Thanks @MarcoB – Kabilan Mahathevan Jun 09 '22 at 12:07
  • First of all welcome to Mathematica SE.! To make the most of the site start by taking the [tour] now. It will help us to help you if you write an excellent question. Check the site for similar questions first. After asking always [edit] if improbable, but not to move goalpost, show due diligence, give brief context, include minimal working example of code and data in formatted form NOT images. As you receive give back, vote and answer questions, keep the site useful, be kind, correct mistakes and share what you have learned. – rhermans Jun 09 '22 at 12:07
  • 1
    Glad it helped! Note also that you don't have to define V as a list of lists to indicate a row vector. Mathematica does not need that distinction, so you can just write v = {0, 1, 0}. See also Row vectors and column vectors. – MarcoB Jun 09 '22 at 12:08

0 Answers0