Calculates the subtraction of two functions.
The first function
The second function
const f = Chalkboard.real.sub(Chalkboard.real.define((x) => x * x), Chalkboard.real.define((x) => x));const y = Chalkboard.real.val(f, 3); // Returns 6 Copy
const f = Chalkboard.real.sub(Chalkboard.real.define((x) => x * x), Chalkboard.real.define((x) => x));const y = Chalkboard.real.val(f, 3); // Returns 6
Calculates the subtraction of two functions.