how to replace the elements row by rows instead of column by column in matrix
Mostra commenti meno recenti
A =[ 0 0 3 3 3 0 0 3 0 0; 0 0 0 3 3 3 0 3 3 0]
[rows,colms ] = size(A)
for i = 1:rows
for j = 1:colms
index-1 = find(A==3,1,'first')
index_2 = find(A==3,1,'last')
If A(i,j)=3 & A(i,j)==index_1
A(i,index_1:index_2) = A(i,index_1:index_2) +1
end
end
end
it gives me 5th and 18th indices while i want to get row wise like first should be 3rd and last should be 6th.
please help me in resolving this problem.
warm regards in advance.
2 Commenti
madhan ravi
il 20 Lug 2019
Show how your expected result should look like.
M.S. Khan
il 20 Lug 2019
Risposta accettata
Più risposte (2)
Bruno Luong
il 20 Lug 2019
f = @(A)cumsum(A==3,2)>0;
A = A + f(A).*fliplr(f(fliplr(A)))
4 Commenti
M.S. Khan
il 21 Lug 2019
TADA
il 21 Lug 2019
Very elegant +1
Bruno Luong
il 21 Lug 2019
Modificato: Bruno Luong
il 21 Lug 2019
"could you plz explain to me."
Sure here is step by step for single row input:
> A = [0 0 3 3 3 0 0 3 0 0].
This will put 1 at the place where there is element with value == 3, so 0 before the first 3 on the left
>> A==3
ans =
1×10 logical array
0 0 1 1 1 0 0 1 0 0
When I apply cumsum to this, after the first 3 element values of the ouput are >= 1. (it actually increase by 1 when it meets a 3)
>> cumsum(A==3)
ans =
0 0 1 2 3 3 3 4 4 4
I need array of 0s, but then 1s starting from the most left 3, so I do logical commparison
>> cumsum(A==3)>0
ans =
1×10 logical array
0 0 1 1 1 1 1 1 1 1
The three steps are combined, I put in a anonymous function
f = @(A)cumsum(A==3,2)>0;
mask1 = f(A)
Now I want to do the exact same trick but runiing from right-to-left. I simply flip the input array, apply f(), then flip the output back
> mask2 = flip(f(flip(A)))
mask2 =
1×10 logical array
1 1 1 1 1 1 1 1 0 0
Meaning I have array with 0s on the right of the last 3 and 1s on the left.
The product of mask1 and mask2 gives
>> mask1.*mask2
ans =
0 0 1 1 1 1 1 1 0 0
provides array with 0s on the right of the last 3, 0 on the left of the first 3, and 1s in between them.
I then simply add them to the original array A to get the desired result.
M.S. Khan
il 23 Lug 2019
KALYAN ACHARJYA
il 20 Lug 2019
Modificato: KALYAN ACHARJYA
il 20 Lug 2019
A=[0 0 3 3 3 0 0 3 0 0; 0 0 0 3 3 3 0 3 3 0]
[rows colm]=size(A);
B=zeros(rows,colm);
for i=1:rows
B(i,i+2:end-3+i)=1;
end
result=A+B
Command Window:
A =
0 0 3 3 3 0 0 3 0 0
0 0 0 3 3 3 0 3 3 0
result =
0 0 4 4 4 1 1 4 0 0
0 0 0 4 4 4 1 4 4 0
>>
1 Commento
M.S. Khan
il 21 Lug 2019
Categorie
Scopri di più su Matrix Indexing in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!