gistlib
You can fill in empty rows of a table with NaN in MATLAB by using the fillmissing function. Here's how you can do it:
NaN
fillmissing
main.m% Assuming 'T' is your table T = fillmissing(T, 'constant', NaN); 66 chars3 lines
% Assuming 'T' is your table T = fillmissing(T, 'constant', NaN);
This code will fill in all empty cells in your table with NaN.
gistlibby LogSnag