MathGroup Archive 2004

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

Search the Archive

Re: Extracting Matrix

  • To: mathgroup at smc.vnet.net
  • Subject: [mg45395] Re: Extracting Matrix
  • From: Harold.Noffke at wpafb.af.mil (Harold Noffke)
  • Date: Tue, 6 Jan 2004 04:16:53 -0500 (EST)
  • References: <btb8oi$jp4$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Bruce:

Here is an example which uses Extract to "behead" a MatrixForm.

    tb = Table[0, {i, 1, 10}, {j, 1, 10}] // MatrixForm;
    Extract[tb, {1}]

It returns the  List{List{ ...}...}  structure from the 
MatrixForm{List{List{...}...}...}  structure.

Regards,
Harold


  • Prev by Date: Re: Show command.
  • Next by Date: Understanding Fibonacci Search
  • Previous by thread: Extracting Matrix
  • Next by thread: Re: Extracting Matrix