about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/div.m
blob: a76bc503f20bece154541fe3e09969566133e002 (plain)
1
2
3
4
5
function d = div(a,b)
% DIV Integer division
% d = div(a,b)

d = floor(a / b);