MathGroup Archive 2003

[Date Index] [Thread Index] [Author Index]

Search the Archive

Transpose matrix does not work when MatrixForm is used, why?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg45177] Transpose matrix does not work when MatrixForm is used, why?
  • From: nma124 at hotmail.com (steve_H)
  • Date: Fri, 19 Dec 2003 06:57:53 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

hello

Mathematica 5.0

m = { {1, 2, 3}, {4, 5, 6} } // MatrixForm
Transpose[m]

this just does nothing. it simply prints back what I typed with
m in MatrixForm but does not actually do the transpose.

But when I do

m = { {1, 2, 3}, {4, 5, 6} }
Transpose[m]


it works.

It seems that the function Transpose does not like to accept a
list in 'MatrixForm' ?

I use a MatrixForm to see the matrix better. Does this mean one have
to removed the MatrixForm each time before calling Transpose?


  • Prev by Date: How to have shaded background for just a portion of a plot?
  • Next by Date: I don't know where else to post such questions as
  • Previous by thread: Re: How to have shaded background for just a portion of a plot?
  • Next by thread: Re: Transpose matrix does not work when MatrixForm is used, why?