How to generate 500 random matrices by loop ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Farooq Aamir
el 14 de Jun. de 2018
Respondida: KSSV
el 14 de Jun. de 2018
I want to generate 500 random matrices for a numerical test by loop? Can anyone help me?
0 comentarios
Respuesta aceptada
KSSV
el 14 de Jun. de 2018
Read about rand.
m = 10 ; n = 10 ; p = 500 ;
iwant = rand(m,n,p) ;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!