How to create a matrix with ones and zeros in one line?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

I am trying to build these matrices but we can only use one operator. Any help on how to build these with one operator would be great.
0 commentaires
Réponses (1)
Image Analyst
le 11 Jan 2021
Did you use the equals sign, which is the assignment operator?
m19 = [1,0,0,1,1;
0,1,0,1,1];
m20 = [0,0,1,1;
0,0,1,1
0,0,0,0
1,1,1,1]
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!