To expand on greg heil's suggestion, and to try and interpret what you
suggested, it sounds like you want something like this:
original=: <"0 i.3 1000
roots=: %:each original
logs=: ^. each original
But you also talked about amending all of the values, so maybe you want
original=: roots
or
origin
sorry, escaped too soon;)
---
Harvey
sounds like you are reaching for each, eg
%: each 4;9;16
+-+-+-+
|2|3|4|
+-+-+-+
where this is
squareroot %:, under %. , boxing >, y
~greg heil
https//picsrp.github.io
--
from: HH PackRat
to: programm...@jsoftware.com
date: May 14, 2021, 8:13 PM
subjec
Harvey
sounds like you are looking for each, eg
%: each 4;9;16
+-+-+-+
|2|3|4|
+-+-+-+
~greg heil
https//picsrp.github.io
--
from: HH PackRat
to: programm...@jsoftware.com
date: May 14, 2021, 8:13 PM
subject: [Jprogramming] Mass amend
Hello again!
>I'm thinking, for example, of a table o
Hello again!
I'm thinking, for example, of a table of boxed data in its transposed
horizontal position that has, say, 3 rows of, say, 1000 *boxed* values
each. My goal is to amend *all* of the boxed values to their square
roots in one version of what I want to do and *all* of the original
boxed v