Re: Creating my own cell
- To: mathgroup at smc.vnet.net
- Subject: [mg46779] Re: Creating my own cell
- From: Harold.Noffke at wpafb.af.mil (Harold Noffke)
- Date: Sun, 7 Mar 2004 01:34:07 -0500 (EST)
- References: <c298v2$572$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Ken:
This simple library function for creating a m-by-n matrix may be of
help to you. When you use it in a notebook, all you type, for
example, is "mx[5,8]" to create a 5x8 matrix of placeholders for the
user to instantiate.
(* Display an mxn matrix initialized with placeholders. The global
values of m,n are not changed. *)
mx[m_,n_] := Table[\[Placeholder], {m}, {n}] // MatrixForm
Regards,
Harold