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
-
answerhappygod
- Site Admin
- Posts: 899604
- 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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!