how to multiply a number in even rows of matrix?

1 view (last 30 days)
I have: output2=-1*ones(input1,input4), how do i make all the even columns be 2? Thanks
Task: output2 is an (input1) × input4 matrix where the entries of all the odd columns are all -1 and the entries of all the even columns are all 2’s.

Accepted Answer

Akira Agata
Akira Agata on 21 Oct 2019
Please try the following:
output2(:,2:2:end) = 2;

More Answers (0)

Tags

Products


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!