@ -91,3 +91,9 @@ float absoluteDifference(float x, float y) {
float maximum(float x, float y) {
return fmax(x, y);
}
// Function to calculate the minimum of two numbers
float minimum(float x, float y) {
return fmin(x, y);