- 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 1 (39.87 KiB) Viewed 49 times
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
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 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
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