Find two ways to create a 3 x 5 matrix with all values equal to 100 (Hint: use ones and zeros).
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am currentlhy having trouble on this question, ive been trying to figure this out for more than 2 hrs. I need help.
0 commentaires
Réponses (1)
Bruno Luong
le 21 Sep 2019
(Not sure why an answered has been deleted)
Method 1
100 + zeros(3,5)
Method 2
100 * ones(3,5)
1 commentaire
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!