Please solve using simple C++ code
In many engineering problems we use normalized values instead of actual values. One common normalization technique scales the values such that the minimum value goes to zero and the maximum value goes to 1 and other values are scaled accordingly. The equation used to normalize is as follows: Normalized x- where min and max represent the minimum and maximum values in the array x respectively Normalize the values in the array x2,-3, -1, 4, 5,-13
OR
OR