How do i create a 1D array that has 100 rows, 100 columns and 3 layers?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mohammed
el 6 de Sept. de 2016
Respondida: KSSV
el 6 de Sept. de 2016
i am a biginner in MATLAB. i want to know how can i create a 1D array with three elements:100 rows,100 columns and 3 layers?
Thanks :)
0 comentarios
Respuesta aceptada
KSSV
el 6 de Sept. de 2016
It will be 3D matrix not an array... You can make the above said dimensions matrix using:
rows = 100 ;
columns = 100 ;
layers = 3 ;
data = rand(rows,columns,layers) ;
An array would be simply a row matrix/vector or a column matrix/ vector.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrices and Arrays 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!