Given the vector x=[1, 5, 7, 11, 3]
What is the value of x after performing the following operation:
x+3
1, 5, 7, 11, 3
Given the vector x=[1, 5, 7, 11, 3]
What is the value of x after performing the following operation:
x=x+3
4, 8, 10, 14, 6
Given the vector x=[1, 5, 7, 11, 3]
How would I find the median of the values in x?
median(x)
Given the vector x=[1, 5, 7, 11, 3]
How would I find the sum of the values of x that are greater than 5?
sum(x(x>5))