Clear Filters
Clear Filters

change even column values only

3 views (last 30 days)
PK
PK on 29 Sep 2016
Commented: Thorsten on 29 Sep 2016
I create 20*20 2D array of all ones. And then I want to change even columns to minus one. How can I change with builtin function?

Accepted Answer

Thorsten
Thorsten on 29 Sep 2016
A = ones(20);
A(:,mod(1:20, 2) == 0) = -1;
  2 Comments
PK
PK on 29 Sep 2016
good answer! I got the following method.... A = ones(20) A(:,2:2:end) = -1
Thorsten
Thorsten on 29 Sep 2016
You method is even better!

Sign in to comment.

More Answers (1)

PK
PK on 29 Sep 2016
good answer! I got the following method.... A = ones(20) A(:,2:2:end) = -1

Tags

Community Treasure Hunt

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

Start Hunting!