Calculates the limit of a function as it approaches a value.
The function
The value
const sinc = Chalkboard.real.define((x) => x === 0 ? 1 : Math.sin(x) / x);const limit = Chalkboard.calc.lim(sinc, 0); // Returns approximately 1 Copy
const sinc = Chalkboard.real.define((x) => x === 0 ? 1 : Math.sin(x) / x);const limit = Chalkboard.calc.lim(sinc, 0); // Returns approximately 1
Calculates the limit of a function as it approaches a value.