index
:
BNW
this commit
main
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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
);