Re: [Jprogramming] Fwd: problem with math/uu

2020-06-29 Thread Mario C
Thank you very much. Mario Ian Clark schrieb am Di., 30. Juni 2020, 01:19: > Bug fixed in math/uu, Version 2.1.27. Please update via package manager. > >load 'math/uu' > > uu '1 /mm^2' NB. viz. "one item per square-mm" > > 1.0E6 /m² > > uu'*ssic 3' NB. set SI conformity level to 3 for output

Re: [Jprogramming] Fwd: problem with math/uu

2020-06-29 Thread Ian Clark
Bug fixed in math/uu, Version 2.1.27. Please update via package manager. load 'math/uu' uu '1 /mm^2' NB. viz. "one item per square-mm" 1.0E6 /m² uu'*ssic 3' NB. set SI conformity level to 3 for output 3 uu '1 /mm^2' 1.0E6 m⁻² uu '1 mm⁻²' 1.0E6 m⁻² VERSION_uu_ 2.1.27 Thank you for re

Re: [Jprogramming] Fwd: problem with math/uu

2020-06-28 Thread Ian Clark
The addon 'math/uu' handles SI Units ( https://en.wikipedia.org/wiki/International_System_of_Units) This is an international standard scientific notation and does not conform to J syntax. Mario C is reporting a bug that I can reproduce. I shall fix it in the next few days. It is allied to a bug f

Re: [Jprogramming] Fwd: problem with math/uu

2020-06-28 Thread Mario C
uu '1 /mm' 0.001 /m NB. ist wrong NB.should be 1e3 /m uu '1 mm' 0.001 m NB. is correct and 'MPa' uu '1 N/mm^2' should be 1 MPa Mario Hauke Rehr schrieb am So., 28. Juni 2020, 18:27: > I think the question was rather about > 1e_6 = % *: 1e_3 > 0 > Instead, > 1e6 = % *: 1e_3 > 1 > But

Re: [Jprogramming] Fwd: problem with math/uu

2020-06-28 Thread Hauke Rehr
I think the question was rather about 1e_6 = % *: 1e_3 0 Instead, 1e6 = % *: 1e_3 1 But I don’t know math/uu; is / supposed to denote %? Does uu '1 /(mm^2)' work? Am 28.06.20 um 18:15 schrieb Tom Arneson: Why? 1e6=*:1000 1 On June 27, 2020 at 7:31 AM Mario C wrote: There is an other problem.

Re: [Jprogramming] Fwd: problem with math/uu

2020-06-28 Thread Tom Arneson
Why? 1e6=*:1000 1 > On June 27, 2020 at 7:31 AM Mario C wrote: > > There is an other problem.uu '1 /mm^2'1.0E-6 /m^2 is wrong. > 2.1.26 j901 Windows and > AndroidMario--For > information about J forums see http://www.jsoftware

Re: [Jprogramming] Fwd: problem with math/uu

2020-06-27 Thread Mario C
There is an other problem. uu '1 /mm^2' 1.0E-6 /m^2 is wrong. 2.1.26 j901 Windows and Android Mario -- For information about J forums see http://www.jsoftware.com/forums.htm

Re: [Jprogramming] Fwd: problem with math/uu

2020-05-06 Thread Mario C
Thank you very much. Mario Ian Clark schrieb am Mi., 6. Mai 2020, 13:43: > Addon: math/uu fixed… > > 'm^2' uu '1 cm cm' > > 1.0E-4 m² > > 'm^2' uu '1 cm^2' > > 1.0E-4 m² > > VERSION_uu_ > > 2.1.26 > > > Please update addon: math/uu > > On Tue, 5 May 2020 at 05:52, Ian Clark wrote: > > > Thanks

Re: [Jprogramming] Fwd: problem with math/uu

2020-05-06 Thread Ian Clark
Addon: math/uu fixed… 'm^2' uu '1 cm cm' 1.0E-4 m² 'm^2' uu '1 cm^2' 1.0E-4 m² VERSION_uu_ 2.1.26 Please update addon: math/uu On Tue, 5 May 2020 at 05:52, Ian Clark wrote: > Thanks for pointing this out. > It appears math/uu is reading 'cm^2' as: c(m^2) instead of: (cm)^2 > The bug affe

Re: [Jprogramming] Fwd: problem with math/uu

2020-05-04 Thread Ian Clark
Thanks for pointing this out. It appears math/uu is reading 'cm^2' as: c(m^2) instead of: (cm)^2 The bug affects every use of a scaling prefix (c, m, …) together with a power. I'll get to work on a fix for this. On Tue, 5 May 2020 at 00:37, Tom Arneson wrote: > I see the same problem in both Wi

[Jprogramming] Fwd: problem with math/uu

2020-05-04 Thread Tom Arneson
I see the same problem in both Windows and Android j901/j64/android > -- Original Message --From: Mario C To: > programming@jsoftware.comDate: May 4, 2020 at 4:49 PMSubject: [Jprogramming] > problem with math/uu > load 'math/uu' NB. math/uu 2.1.24 > There is a difference betwee