Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
FNOVERHALFCARTESIANPRODUCT
|
||||
=LAMBDA(f,
|
||||
LAMBDA(n,
|
||||
LET(
|
||||
ixs, SEQUENCE(n, n, 1, 1),
|
||||
|
||||
REM, "1-based indices.",
|
||||
x, 1 + MOD(ixs - 1, n),
|
||||
y, 1 + QUOTIENT(ixs - 1, n),
|
||||
|
||||
IF(x >= y,
|
||||
f(x)(y),
|
||||
""
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
MUL
|
||||
=LAMBDA(a, LAMBDA(b, a * b))
|
||||
|
||||
|
||||
POW
|
||||
=LAMBDA(n,
|
||||
LAMBDA(e,
|
||||
POWER(n, e)
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue