How do you set entries in a matrix for odd rows with odd columns to zero?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
L'O.G.
le 15 Fév 2023
Réponse apportée : Dyuman Joshi
le 15 Fév 2023
I want to set A(i,j) = 0 if both i and j are odd. Is this possible to do vectorially?
0 commentaires
Réponse acceptée
Dyuman Joshi
le 15 Fév 2023
%random data for example
A = rand(6,7)
A(1:2:end,1:2:end)=0
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!