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