12 lines
457 B
C
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);
|