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

1 visualizzazione (ultimi 30 giorni)
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

Risposta accettata

Birdman
Birdman il 13 Feb 2018
Modificato: Birdman il 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 Commento
Philippe Corner
Philippe Corner il 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

Accedi per commentare.

Più risposte (1)

Andrei Bobrov
Andrei Bobrov il 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 Commento
Philippe Corner
Philippe Corner il 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

Accedi per commentare.

Categorie

Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by