It would be interesting for a group of users using the same server.
One setting in a local network.
On a global server too.
JHS is a really great piece of work that more people need to understand and
use.
On 21 Oct 2016 21:41, "Brian Schott" wrote:
> I suspect that there are a few users or po
Eric, Bjorn, Raul, et al,
My perspective is to make more current J users able to create "apps" for
themselves or for their organizations, and less to bring new users to J
(because of the other existing features and strengths). By "apps" I primarily
mean apps for browsers on mobile devices b
JHS update available.
Fixes bugs in previous version.
Studio menu has a new entry: watch.
Studio>app building includes new app6 that shows how to use window ids and
how to get args to the initial jev_get so the page can be customized.
-
a =: 2 1 3 4
5 5 5 5 + 0{a
7 7 7 7
5 5 5 5 + 1{.a
|length error
| 5 5 5 5 +1{.a
1{.a
2
$ 1{.a
1
datatype a
integer
datatype 5 5 5 5
integer
datatype 1{.a
integer
Why the length error?
Skip
Skip Cave
Cave Consulting LLC
---
A 1-element vector is different from a scalar. The conformability
requirements for + are that either the left and right shapes match, or one
shape is a prefix of the other. (,4) and (,1), the shapes here, do not
match and neither is a prefix of the other. Hence the length error.
On Sat, Oct 2