about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/ncols.m
blob: a6fe135299666119e4df51eb145f5cb1fa7bd075 (plain)
1
2
3
4
function c = cols(x)
% COLS    The number of columns.
% COLS is a more readable alternative to size(x,2).
c = size(x,2);