How am I supposed to replace a complete row/column within a cell array with NaNs?
test = cell(3,2);
% These calls won't do it
test{2,:} = nan;
test(2,:) = nan;
How am I supposed to replace a complete row/column within a cell array with NaNs?
test = cell(3,2);
% These calls won't do it
test{2,:} = nan;
test(2,:) = nan;