- no more than 2^48 - 1 = 281474976710655 variables
- each variable is restricted to no more than 2^48 - 1 = 281474976710655 in each dimension
- each variable is restricted to 2^48 - 1 = 281474976710655 bytes
- total size of all memory used in a single MATLAB process is restricted to be no more than 2^48 - 1 = 281474976710655 bytes
Is there any maximum for the size of matlab table?
56 views (last 30 days)
Show older comments
I need to know if there is maximum for the number of rows and columns of the matlab table.
For example is it ok to have around 2000 rows and 500 columns?
0 Comments
Answers (3)
Walter Roberson
on 5 May 2021
table() objects are restricted to:
2000 rows and 5000 columns is no problem at all. Here is one 50 times bigger (100 times bigger ran out of memory on the system I was executing on)
t = array2table(randi(9, 10000, 50000, 'uint8'));
whos t
0 Comments
Steven Lord
on 5 May 2021
There are theoretical limits (based on limitations of the operating system's ability to address memory) that you are highly unlikely to reach especially now that MATLAB is a 64-bit application.
There are also practical limits (based on how much memory is available on your system) that you likely won't reach.
2000 rows and 500 variables should be well within the practical limit unless you have a lot of other data in your workspace. You can check before filling in the data:
T = table('size', [2000 500], 'VariableTypes', repmat("double", 1, 500));
whos T
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!