You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For writing, for example, a method that scales a data set, it would be useful to be able to write something along the lines of
(* 2 [2, 3])
and get the expected result [4, 6], as well as performing other arithmetic operations or functions where one argument is a single value applied to all elements of an array argument.
I have implemented this feature to familiarize myself with the Huo codebase, it can be found at my constant-array-expansion branch of my fork. Feedback/issues appreciated!
The text was updated successfully, but these errors were encountered:
For writing, for example, a method that scales a data set, it would be useful to be able to write something along the lines of
and get the expected result
[4, 6]
, as well as performing other arithmetic operations or functions where one argument is a single value applied to all elements of an array argument.I have implemented this feature to familiarize myself with the Huo codebase, it can be found at my constant-array-expansion branch of my fork. Feedback/issues appreciated!
The text was updated successfully, but these errors were encountered: