Re: [Jprogramming] 64 bit 📱

2017-06-23 Thread bill lam
If you refered to Iospacman.txt script on jwiki, I checked it was out dated. I uploaded a version for j805. Please try if that can solve your problem, if it still fails, perhaps you have to wait for the new J64 ipx. Пт, 23 июн 2017, jprogramming написал(а): > So far I have been unable to run the s

Re: [Jprogramming] Complex residue

2017-06-23 Thread Don Kelly
the floor and related residue operations in the dictionary are related to the paper. The dictionary residue is as in the dictionary but the floor definition for complex numbers is apparently as in this paper. However the question as to whether floor, ceiling and residue of complex numbers are

Re: [Jprogramming] 64 bit 📱

2017-06-23 Thread Joey K Tuttle
2!:0 'uname' |interface error | 2!:0'uname' 2!:0'date' |interface error | 2!:0'date' Both 32 & 64 bit versions. Sent from my iPhone > On Jun 23, 2017, at 16:24, Bill wrote: > > 2!:0'date' -- For information

Re: [Jprogramming] 64 bit 📱

2017-06-23 Thread Bill
can you test if 2!:0 works or not? eg 2!:0'uname' 2!:0'date' On 24 Jun, 2017, at 6:37 AM, "'Jim Russell' via Programming" wrote: > Ok thanks. I'll be patient. It worked well in J32, so I expected any J script > that worked there would also work in J64. > >> On Jun 23, 2017, at 5:42 PM, Eric

Re: [Jprogramming] 64 bit 📱

2017-06-23 Thread 'Jim Russell' via Programming
Ok thanks. I'll be patient. It worked well in J32, so I expected any J script that worked there would also work in J64. > On Jun 23, 2017, at 5:42 PM, Eric Iverson wrote: > > I don't think you will be able to get this to work without quite a bit of > trouble. > > The next iOS J will have bett

Re: [Jprogramming] 64 bit 📱

2017-06-23 Thread Eric Iverson
I don't think you will be able to get this to work without quite a bit of trouble. The next iOS J will have better facilities in this area. I'm hoping for a release in about 2 months. On Fri, Jun 23, 2017 at 5:36 PM, 'Jim Russell' via Programming < programm...@jsoftware.com> wrote: > So far I ha

[Jprogramming] 64 bit 📱

2017-06-23 Thread 'Jim Russell' via Programming
So far I have been unable to run the script to enable paceman in j64. Does this error message suggest anything to people who understand J much better that I do: 0!:0 jfromcb '' Updating server catalog... |syntax error: httpget | 0=#msg=.e Thanks!!

Re: [Jprogramming] Complex residue

2017-06-23 Thread Louis de Forcrand
Thanks for the quick answers (and quick bug-fixing for that matter). Louis > On 23 Jun 2017, at 14:25, Henry Rich wrote: > > After reflection it seems clear that this is a bug in the implementation, so > I have fixed it for the next release, to match the Dictionary. > > Henry Rich > >> On 6/

Re: [Jprogramming] verb to set an element of an array

2017-06-23 Thread Rudolf Sykora
> put =: (42"_)`[`]} I once again thank all who both answered and supplied extra information on my question. Ruda -- For information about J forums see http://www.jsoftware.com/forums.htm

Re: [Jprogramming] Complex residue

2017-06-23 Thread Henry Rich
After reflection it seems clear that this is a bug in the implementation, so I have fixed it for the next release, to match the Dictionary. Henry Rich On 6/22/2017 9:32 PM, Henry Rich wrote: I admit that the definition as it is implemented is less pretty than the one in Ye Dic. It would be e

Re: [Jprogramming] verb to set an element of an array

2017-06-23 Thread Henry Rich
Also put =: (42"_)`[`]} Henry Rich On 6/23/2017 7:41 AM, Rudolf Sykora wrote: put =: 4 : '42 (x)}y' verb is defined as 3, meaning a monadic verb, but a dyadic verb is needed. Aha! I see. Thanks Ruda -- For information about

Re: [Jprogramming] verb to set an element of an array

2017-06-23 Thread Raul Miller
Note also: dyad 4 That said, you can do it with verb: put =: verb : (':';'42 x}y') 3 put 9$0 0 0 0 42 0 0 0 0 0 See also http://www.jsoftware.com/help/dictionary/d310n.htm Thanks, -- Raul On Fri, Jun 23, 2017 at 6:17 AM, Schmidt-Gröttrup, Markus wrote: > Try > > put =: 4 : '42 (x)

Re: [Jprogramming] verb to set an element of an array

2017-06-23 Thread Björn Helgason
() are not needed On 23 Jun 2017 11:41, "Rudolf Sykora" wrote: > put =: 4 : '42 (x)}y' > verb is defined as 3, meaning a monadic verb, but a dyadic verb is needed. Aha! I see. Thanks Ruda -- For information about J forums see

Re: [Jprogramming] verb to set an element of an array

2017-06-23 Thread Rudolf Sykora
> put =: 4 : '42 (x)}y' > verb is defined as 3, meaning a monadic verb, but a dyadic verb is needed. Aha! I see. Thanks Ruda -- For information about J forums see http://www.jsoftware.com/forums.htm

Re: [Jprogramming] verb to set an element of an array

2017-06-23 Thread Björn Helgason
put=: 4 : '42 x}y' 1 put 1 2 3 1 42 3 On 23 Jun 2017 09:23, "Rudolf Sykora" wrote: Hello, I want to set x'th element of y to 42. I tried quite a few variations of put := verb : '42 x}y' but I am still getting 1 put 1 2 3 |domain error: put Can you tell me what is wrong, and tell me how

Re: [Jprogramming] verb to set an element of an array

2017-06-23 Thread Schmidt-Gröttrup , Markus
Try put =: 4 : '42 (x)}y' verb is defined as 3, meaning a monadic verb, but a dyadic verb is needed. Best regards, Markus -Ursprüngliche Nachricht- Von: Programming [mailto:programming-boun...@forums.jsoftware.com] Im Auftrag von Rudolf Sykora Gesendet: Freitag, 23. Juni 2017 11:24 A

[Jprogramming] verb to set an element of an array

2017-06-23 Thread Rudolf Sykora
Hello, I want to set x'th element of y to 42. I tried quite a few variations of put := verb : '42 x}y' but I am still getting 1 put 1 2 3 |domain error: put Can you tell me what is wrong, and tell me how to do it right? Thanks Ruda -