Randomly initialise a matrix with numbers between 0 and 1?
38 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to initialise a 2*5 matrix with values between 0 and 1. Is there any easy way to do this?
0 commentaires
Réponses (1)
Manvi Goel
le 6 Juin 2019
You can initialise a random matrix with uniform distribution between 0 and 1 by the following:
randomMatrix = rand(2,5)
0 commentaires
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!