Returns the value of the Kronecker delta function of two numbers (returns 1 if they're equal and 0 otherwise).
First number
Second number
const yes = Chalkboard.numb.Kronecker(1, 1); // Returns 1const no = Chalkboard.numb.Kronecker(1, 10); // Returns 0 Copy
const yes = Chalkboard.numb.Kronecker(1, 1); // Returns 1const no = Chalkboard.numb.Kronecker(1, 10); // Returns 0
Generated using TypeDoc
Returns the value of the Kronecker delta function of two numbers (returns 1 if they're equal and 0 otherwise).