No I'm not testing you! I literally started with J this evening. And loads
of people have responded, this is great. But I only know the very basics.
I'll read thru these mails. I have 3 J assignments for college to do.

Thanks a million,
Sean


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Joey K Tuttle
Sent: 23 March 2006 03:43
To: Programming forum
Subject: Re: [Jprogramming] Passing a list to a tacit function

At 03:03  +0000 2006/23/3, Sean McGowan wrote:
>
>I'm new to J and have a question regarding tacit functions. I need to write
>tacit a J function that takes a list of 3 numbers as its argument. 
>How do you pass and reference the elements of a list in a function?
>
>The following seems to work when passing one number:
>
>
>    tax 10
>1
>I wish to pass 3 numbers in a list and be able to use each number in the
>computation.
>
>I know list elements can be accessed like this:
>    list =: 10 0 1
>    N =: 0 { list
>    A =: 1 { list
>    B =: 2 { list
>    N
>10
>    A
>0
>    B
>1
>


Maybe people are avoiding answering because they think
you are teasing us.... (are you?)  Did you try

    tax list
1 0 0.1

----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to