Re: making MatrixForm[] defaul
- To: mathgroup@smc.vnet.net
- Subject: [mg11487] Re: making MatrixForm[] defaul
- From: derwent.1@nd.edu (John E. Derwent)
- Date: Fri, 13 Mar 1998 12:21:31 -0500
- Organization: University of Notre Dame
- References: <6e8490$ne9@smc.vnet.net>
Try the following command. $Post := If[MatrixQ[#], MatrixForm[#], #]& To turn it off: Clear[$Post] I first saw this in the book "Linear Algebra with Mathmatica" by E.Johnson, from Brooks/Cole, 1995 In article <6e8490$ne9@smc.vnet.net>, Ersek_Ted%PAX1A@mr.nawcad.navy.mil wrote: > Barry Wark wrote: > ---------- > |I am doing a lot of work in Mathematica for my linear algebra class. I > |find that I'm doing a lot of MatrixForm[] around commands to generate > |output that I am comfortable reading. Is there any way to make > |MatrixForm the default method for displaying matricies (lists) so that > |I don't have to keep typing it?