how to initiate a table in matlab
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to initiate a table that i will later add names and numbers in it.
The table will be an array of 12x7
thanks.
0 comentarios
Respuestas (2)
siddhesh rane
el 15 de Jul. de 2013
A = rand(12,7) use this it will generate 12x7 table with random values in it
or you can use zeros(12,7)..if you want to initiate all values with 0
0 comentarios
Ver también
Categorías
Más información sobre Tables 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!