Re: MatrixPower problem
- To: mathgroup at smc.vnet.net
 - Subject: [mg124177] Re: MatrixPower problem
 - From: roby <roby.nowak at gmail.com>
 - Date: Wed, 11 Jan 2012 17:22:20 -0500 (EST)
 - Delivered-to: l-mathgroup@mail-archive0.wolfram.com
 - References: <je96q1$j7o$1@smc.vnet.net>
 
Hello,
one could check every expression and its sub sub... subexpression for
the occurence of a matrix and force MatrixForm on output for these.
$Post := Map[If[MatrixQ@#, MatrixForm@#, #] &, #, {0, Infinity}] &
Cheers Robert