List the Matlab functions that accomplish these tasks Find t
List the Matlab functions that accomplish these tasks: -Find the largest number in a set of numbers -Smallest integer which exceeds a number x -Find the total sum of a set of numbers -Find the product of a set of numbers - Find the average of a set of numbers - Find the smallest number in a set of numbers.
Solution
M = max(A) returns the largest elements of A.
S = sum(A) returns the sum of the elements of A
B = prod(A) returns the product of the array elements of A
M = mean(A) returns the mean of the elements of A
C = min(A) returns the smallest element of A if A is a vector
