how to initiate a table in matlab
이전 댓글 표시
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.
답변 (2개)
siddhesh rane
2013년 7월 15일
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
Azzi Abdelmalek
2013년 7월 15일
0 개 추천
You can use uitable function, look at this link
카테고리
도움말 센터 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!