how to initiate a table in matlab
2 views (last 30 days)
Show older comments
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 Comments
Answers (2)
siddhesh rane
on 15 Jul 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 Comments
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!