已回答
A basic matlab problem
x = 9.5.*ones(2,5)

5 years 前 | 0

已回答
Odd numbered elements problem
function y = every0ther(x) y = x(1:2:end); end Hope this helps!

5 years 前 | 5