www.gusucode.com > matlab编写的一个拟合曲面的工具箱源码程序 > 3d_fitting/quotient.m

    function sh=quotient(x,y)
% sh 为 x/y 的商

sh=(x-mod(x,y))/y;