How to use logical expressions to change the values of a column who matches a condition on a different column?

1 view (last 30 days)
If we have a matrix M like
V1. V2. V3.
1 1 1
2 4 9
3 4 0
4 4 3
5 5 1
6 9 5
7 0 3
8 4 5
9 4 6
10 5 2
How could we make zero the values of V2 and V3 which are from 4 to 7? obtaining M2 like:
V1. V2. V3.
1 1 1
2 4 9
3 4 0
4 0 0
5 0 0
6 0 0
7 0 0
8 4 5
9 4 6
10 5 2

Accepted Answer

Birdman
Birdman on 13 Feb 2018
Edited: Birdman on 13 Feb 2018
M=[1 1 1
2 4 9
3 4 0
4 4 3
5 5 1
6 9 5
7 0 3
8 4 5
9 4 6
10 5 2];
M(4:7,2:3)=0
  1 Comment
Philippe Corner
Philippe Corner on 23 Mar 2018
Mr. Bird man, could you check this problem please? https://la.mathworks.com/matlabcentral/answers/390255-how-to-modify-the-code-changing-the-intervals

Sign in to comment.

More Answers (1)

Andrei Bobrov
Andrei Bobrov on 13 Feb 2018
>> V = [1 1
4 9
4 0
4 3
5 1
9 5
0 3
4 5
4 6
5 2];
>> V(4:7,:)=0
V =
1 1
4 9
4 0
0 0
0 0
0 0
0 0
4 5
4 6
5 2
>>
  1 Comment
Philippe Corner
Philippe Corner on 23 Mar 2018
Mr. Andrei, could you check this problem please? https://la.mathworks.com/matlabcentral/answers/390255-how-to-modify-the-code-changing-the-intervals

Sign in to comment.

Categories

Find more on Statistics and Machine Learning Toolbox 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!