MathGroup Archive 2005

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

Search the Archive

Re: Matrix Problem

  • To: mathgroup at smc.vnet.net
  • Subject: [mg53584] Re: Matrix Problem
  • From: "David Park" <djmp at earthlink.net>
  • Date: Wed, 19 Jan 2005 01:59:39 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

Nilaakash,

Is this what you want?

data = Table[{Sin[x], Cos[y], Sin[x]Cos[y]}, {x, 0, 3}, {y, 0, 2}];
Flatten[data, 1] // MatrixForm

David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/ 



From: nilaakash [mailto:nilaakash at gmail.com]
To: mathgroup at smc.vnet.net


Hi,
       I face a problem to get (3xn) matrix data.  Here I am giving a
simple example.

        data = Table[{Sin[x], Cos[y], Sin[x] Cos[y]}, {x, 0, 3, 1},
{y, 0, 2, 1}];
        MatrixForm[data]

 It prints a (4x3) block matrix.

Could anybody tell me how shall I get only 3 column matrix like
following matrix ?

        Sin[0]          Cos[0]             Sin[0] Cos[0]
        Sin[1]          Cos[0]             Sin[1] Cos[0]
        Sin[2]          Cos[0]             Sin[2] Cos[0]
        Sin[3]          Cos[0]             Sin[3] Cos[0]
        Sin[0]          Cos[1]             Sin[0] Cos[1]
        Sin[1]          Cos[1]             Sin[1] Cos[1]
        Sin[2]          Cos[1]             Sin[2] Cos[1]
        Sin[3]          Cos[1]             Sin[3] Cos[1]
        Sin[0]          Cos[2]             Sin[0] Cos[2]
        Sin[1]          Cos[2]             Sin[1] Cos[2]
        Sin[2]          Cos[2]             Sin[2] Cos[2]
        Sin[3]          Cos[2]             Sin[3] Cos[2]

Thanks.

Nilaakash




  • Prev by Date: Re: Matrix Problem
  • Next by Date: Re: Matrix Problem
  • Previous by thread: Re: Matrix Problem
  • Next by thread: Re: Matrix Problem