Answered
A basic matlab problem
x = 9.5.*ones(2,5)

4 years ago | 0

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

4 years ago | 5