The maximum of the sine and cosine functions is +1, and the minimum is -1.
Chat with our AI personalities
max = a > b ? a : b; max = max > c ? max : c;
int max = a>b?a:b; // set max to the larger of a and b
42
int matrix[][]; // the matrix to find the max in int max = matrix[0][0]; int r,c; for(r = 0; r < 3; ++r) { for(c = 0; c < 3; ++c) { if(matrix[r][c] > max) { max = matrix[r][c]; } } } // max is now the maximum number in matrix
In Excel, you can use the max() function. You can type a range (or several ranges) within the max() function. For a single range, just type: =max( and select the desired range, then type the closing parenthesis.