about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/nrows.m
blob: a8046995e637f225b5dfb5537820e7225b039b9f (plain)
1
2
3
4
function r = rows(x)
% ROWS      The number of rows.
% ROWS is a more readable alternative to size(x,1).
r = size(x,1);