MATLAB: How to give column header name

MATLABvector

block=[1 10;2 11;3 12;4 13;5 14]
how to make individual column name? like c1=channel and c2=quality and display the column with header name

Best Answer

BLOCK = table;
BLOCK.channeL = block(:, 1);
BLOCK.quality = block(:, 2)