Hi,
I want to change the sign of every second element in a vector, starting from element two. I tried the following code. Can someone explain why it does not work and help me to fix it? Thank you!
function newVector = change(v)
    for i = 1:length(v)-1    
        newVector(i) = v(i);
        newVector(i+1) = v(i+1)*-1;
    end
    
    v = newVector
end