8.17
MathOak🔗ℹ
Link to this document with
@other-doc['(lib "MathOak/mathoak.scrbl")]
Link to this document with
@other-doc['(lib "MathOak/mathoak.scrbl")]
1 Functions🔗ℹ
Link to this section with
@secref["Functions" #:doc '(lib "MathOak/mathoak.scrbl")]
Link to this section with
@secref["Functions" #:doc '(lib "MathOak/mathoak.scrbl")]
(total numbers) → number?
|
numbers : (listof number?) |
Returns the sum of all numbers in the given list.
(sum numbers) → number?
|
numbers : (listof number?) |
An alias of total.
(integer->chars number [radix]) → (listof char?)
|
number : integer? |
radix : integer? = 10 |
(integer->string number [radix]) → string?
|
number : integer? |
radix : integer? = 10 |
(integer->digits number [radix]) → (listof integer?)
|
number : integer? |
radix : integer? = 10 |
(digits->integer numbers [radix]) → integer?
|
numbers : (listof integer?) |
radix : integer? = 10 |
(nest f x n) → any/c
|
f : function? |
x : any/c |
n : integer? |
Do what
Nest does in Mathematica.
(nest-list f x n) → (listof any/c)
|
f : function? |
x : any/c |
n : integer? |