Returns the value of the Kronecker delta function of two numbers (returns 1 if they're equal and 0 otherwise).
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
First number
Second number
Returns the value of the Kronecker delta function of two numbers (returns 1 if they're equal and 0 otherwise).
Example