Re: How to use Thread when second argument to function is a list of lists?
- To: mathgroup at smc.vnet.net
 - Subject: [mg86374] Re: How to use Thread when second argument to function is a list of lists?
 - From: "Nasser Abbasi" <nma at 12000.org>
 - Date: Sun, 9 Mar 2008 05:07:16 -0500 (EST)
 - Reply-to: "Nasser Abbasi" <nma at 12000.org>
 
small correction:
ref (me)
> This function takes as input the row number and the matrix itself and 
> returns a list that contain the non-zero elements in the that row.
>
> i.e. function is   f[ list , matrix]:=Module[{},.....]
>
The above should be
         f[ rowNumber , matrix]:=Module[{},.....]
i.e. the function f[] takes as argument a number and the matrix. The number 
is the row number to process.
Nasser