- remove -1

git-svn-id: http://moon:8086/svn/matlab/trunk@26 801c6759-fa7c-4059-a304-17956f83a07c
This commit is contained in:
2015-04-05 16:02:14 +00:00
parent bddaaee2d5
commit 3b4e76d178
+1 -1
View File
@@ -1,7 +1,7 @@
function [omega, err, dmod, omega_coarse, omega_est] = fdet(x, N, Ng, off, omega_min, omega_step, omega_max)
%
K = fix((length(x)-Ng)/(N+Ng))-1;
K = fix((length(x)-Ng)/(N+Ng));
% Initial guess
omega_coarse = fdet_coarse(x, N, omega_min, omega_step, omega_max);