Rowan-Classes/6th-Semester-Spring-2024/EnI/Group Work/code/ReadAcceleration/data.h

12 lines
457 B
C

// Calculate the maximum value in an array of floats
float arrMaxf(float* arr, unsigned int length);
// Calculate the minimum value in an array of floats
float arrMinf(float* arr, unsigned int length);
// Calculate the index of the maximum value in an array of floats
unsigned int arrMaxfIndex(float* arr, unsigned int length);
// Calculate the index of the minimum value in an array of floats
unsigned int arrMinfIndex(float* arr, unsigned int length);