Creating my own cell
- To: mathgroup at smc.vnet.net
- Subject: [mg46753] Creating my own cell
- From: "Flurchick, Kenneth M" <FLURCHICKK at MAIL.ECU.EDU>
- Date: Fri, 5 Mar 2004 01:47:19 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
GentleBeings
Trying to create a cell with a variable assigned to the matrix
I have tried this but no assignemnt (Also lookscumbersome)
makeIR[numberOfRows_] :=
Module[{qar},
StylePrint[Set[ qar,
MatrixForm[
Partition[
Flatten[
Insert[
Table[{ \[Placeholder] , \[Placeholder] }, {
numberOfRows - 1}],
{\[SelectionPlaceholder], \[Placeholder]}, 1
]
], 2
]
]], "Input"
]
]
I want to pass in the number of rows and make the 2D matrix for
a user to fill in
I want to position the current selection to the first placeholder.
Any suggestions are desperately needed, this is just over my ability.
kenf