Multiplying every secound element in a vector with -1
이전 댓글 표시
Hello I am looking for how to multiply every secound element in vector 1xn with -1, but I want to write this as a function. I can do this manually like this for example with an 1x3 vector;
function vny = byt_tecken(v)
vny=[v(1,1),-v(1,2),v(1,3)]
end
But how do I do this for any given 1xn vector? Thanks!
채택된 답변
추가 답변 (2개)
Daniel M
2019년 10월 3일
Here is another way:
function vny = byt_tecken(v)
vny = v.*-(-1).^(1:numel(v));
end
James Tursa
2019년 10월 3일
Or yet another of the zillion ways
vny = v;
vny(2:2:end) = -vny(2:2:end);
카테고리
도움말 센터 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!