How do I use for loops and if statements to find numbers in a two dimensional array and replace them?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
BCLAcowgirl#1
il 18 Feb 2018
Commentato: Image Analyst
il 3 Ott 2021
I need to replace all the negative numbers in A=[1 2 4; 3 2 -1; 2 4 5; -2 -1 10] with zeros using for loops and if statements.
Below is the coding I have, but it doesn't do anything. Please, advise me on what I'm doing wrong.
for i=A
if i<0
A(i)=0;
end
end
Risposta accettata
Star Strider
il 18 Feb 2018
In your homework assignment that requires for loops and an if block, you need two nested loops, one looping through the rows and another the columns. In the innermost loop, use the if statement to test and replace the negative values of ‘A’, not the loop indices (that in MATLAB must be integers greater than zero, so a test for negative values of them will always fail).
There are more straightforward ways to do this, one being:
A = [1 2 4; 3 2 -1; 2 4 5; -2 -1 10];
A = A .* (A>0)
A =
1 2 4
3 2 0
2 4 5
0 0 10
I don’t mind showing you that solution, since you can’t use it in your assignment.
2 Commenti
Star Strider
il 18 Feb 2018
You need to test for the value of ‘A(i,j)’ not the subscripts of ‘A(i,j)’.
I provided my solution as a hint as to how best for you to approach it.
Più risposte (3)
Roger Stafford
il 18 Feb 2018
Modificato: Roger Stafford
il 18 Feb 2018
Use the "linear" form of the array:
for i = 1:length(A(:))
if A(i) < 0 % <- [Corrected]
A(i) = 0;
end
end
or you can do this:
t = A<0;
A(t(:)) = 0;
1 Commento
Image Analyst
il 18 Feb 2018
Close, but you need to loop from 1 to numel(A) and you need to check if A(i) < 0, not if i < 0.
A=[1 2 4; 3 2 -1; 2 4 5; -2 -1 10]
for i = 1 : numel(A)
if A(i) < 0
A(i) = 0;
end
end
A
0 Commenti
Patel Keyur
il 3 Ott 2021
I have one array and in this array detected number in this array so how to detected number in array?
1 Commento
Image Analyst
il 3 Ott 2021
Use == (if they're integers) or ismembertol() if they're floating point numbers.
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!