For loop or Array?
Show older comments
Have a matrix [0 0 0 0 0 0; 0 0 0 1 1 1; 0 0 0 0 1 1; 0 0 0 0 1 1; 0 0 0 0 0 1; 0 0 0 1 1 1]. Want Matlab, in any row it encounters 1, to replace the first three zeros before the 1 with 1 so that I will have something like this [0 0 0 0 0 0; 1 1 1 1 1 1; 0 1 1 1 1 1; 0 1 1 1 1 1; 0 0 1 1 1 1; 1 1 1 1 1 1]. How do I go about this? I have a very big matrix I am dealing with.
4 Comments
Williams Ackaah
on 29 Jul 2015
Andrei Bobrov
on 29 Jul 2015
Edited: Andrei Bobrov
on 29 Jul 2015
see part of my answer after 'add'
Williams Ackaah
on 31 Jul 2015
Edited: Williams Ackaah
on 31 Jul 2015
Stephen23
on 31 Jul 2015
Using loops seems reasonable to me.
Your requirements exclude the use of circshift and cumsum in a trivial combination (e.g. Andrei Bobrov's initial answer). While there might be more compact solutions, using loops is likely the least obfuscated and yet also reasonably fast.
Answers (2)
Andrei Bobrov
on 29 Jul 2015
Edited: Andrei Bobrov
on 29 Jul 2015
out = cumsum(circshift(A,[0,3]),2)>0;
add
m = 3
b = [zeros(size(A,1),1),diff(A,[],2)]==1;
out = cumsum(b(:,[m+1:end,1:m])-b,2)+A;
>> A = [0 0 0 0 1 1 0 0 0 0 0 1 1; 0 0 0 1 1 1 0 0 0 0 1 1 1; 0 0 0 1 1 1 0 0 0 0 1 1 1; 0 0 0 0 0 1 0 0 0 0 0 0 1]
A =
0 0 0 0 1 1 0 0 0 0 0 1 1
0 0 0 1 1 1 0 0 0 0 1 1 1
0 0 0 1 1 1 0 0 0 0 1 1 1
0 0 0 0 0 1 0 0 0 0 0 0 1
>> B = A;
>> for k = 1:3, B(:,4-k:end-k) = B(:,4-k:end-k) | A(:,4:end); end
>> B
B =
0 1 1 1 1 1 0 0 1 1 1 1 1
1 1 1 1 1 1 0 1 1 1 1 1 1
1 1 1 1 1 1 0 1 1 1 1 1 1
0 0 1 1 1 1 0 0 0 1 1 1 1
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!