Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
A1 : Kelvin
|
||||
B1 : Celsius
|
||||
C1 : Fahrenheit
|
||||
D1 : Rankine
|
||||
Name A2 : K
|
||||
B2 : =K-273.15
|
||||
C2 : =K*1.8-459.67
|
||||
D2 : =K*1.8
|
||||
Input in A1
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
FROMKELVIN
|
||||
=LAMBDA(toUnit,
|
||||
LAMBDA(n,
|
||||
LET(
|
||||
REM, "Valid units :: C, F, R, K",
|
||||
|
||||
CONVERT(
|
||||
n, "K",
|
||||
IF("R" = toUnit,
|
||||
"Rank",
|
||||
toUnit
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
ENUMFROMTHENTO
|
||||
=LAMBDA(a,
|
||||
LAMBDA(b,
|
||||
LAMBDA(z,
|
||||
LET(
|
||||
d, b - a,
|
||||
|
||||
SEQUENCE(
|
||||
1 + FLOOR.MATH((z - a)/d),
|
||||
1, a, d
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue