How to swap cells in matrix with code
Mostrar comentarios más antiguos
I have to change the value of every cell in a matrix which is >5. However I am not sure how. I have to include the 'find' function. I have to change every value greater than 5 to 0, I am not sure how.
D=[8 1 6;3 5 7;4 9 2];
[d1,d2]=find(D>5);
d=[d1,d2];
disp(d)
Doing this gives me
>> PBTask4p3
1 1
3 2
1 3
2 3
5 comentarios
Ameer Hamza
el 21 de Sept. de 2020
"include the 'find' function". Is this a homework problem? What is the expected output?
Allen Antony
el 21 de Sept. de 2020
Mohammad Sami
el 21 de Sept. de 2020
You should look at logical indexing. For your problem you can use find, however it's not necessary.
Allen Antony
el 21 de Sept. de 2020
KSSV
el 21 de Sept. de 2020
Read about logical indexing.
A = rand(5) ;
idx = A>0.5 ; % logical indexing
A(idx) = 0 ;
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!