What is value in the variable x after the following code run? n=length(x); while n>1 x= x(1:2:end); n = length(x); end A
Posted: Fri May 20, 2022 11:41 am
What is value in the variable x after the following code run? n=length(x); while n>1 x= x(1:2:end); n = length(x); end A. the last value in the original vector X B. the first value of the original vector C. an empty vector, D. the size of the original vector X