Defines a mathematical function in the field of real numbers.
The rule(s) of the function
const parabola = Chalkboard.real.define((x) => x * x - 4);const y = Chalkboard.real.val(parabola, 3); // Returns 5 Copy
const parabola = Chalkboard.real.define((x) => x * x - 4);const y = Chalkboard.real.val(parabola, 3); // Returns 5
Defines a mathematical function in the field of real numbers.