Re: T for Transpose
- To: mathgroup at smc.vnet.net
- Subject: [mg41677] Re: T for Transpose
- From: "Carl K. Woll" <carlw at u.washington.edu>
- Date: Fri, 30 May 2003 03:56:22 -0400 (EDT)
- Organization: University of Washington
- References: <bb4uib$42o$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Will, Two possibilities come to mind. First, your student could simply use TraditionalForm as the Default Input FormatType (go to the Cell menu to change this). Second, if your student wants to stick with StandardForm, then he could create a rule for MakeExpression as follows: MakeExpression[SuperscriptBox[m_, "T"], StandardForm] := MakeExpression[RowBox[{"Transpose", "[", m, "]"}], StandardForm] Carl Woll Physics Dept U of Washington "Will Self" <wself at msubillings.edu> wrote in message news:bb4uib$42o$1 at smc.vnet.net... > I am using Mathematica 4.0. > > My student wants to use the basic input palette to enter a matrix, and > then wants to use CONTROL-6 T to put the exponent T on the matrix, > indicating a transpose. Is there a way to coerce Mathematica to > interpret this as the transpose of a matrix and return the appropriate > result? > > Will >