贴一段Matlab代码
Posted strchn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了贴一段Matlab代码相关的知识,希望对你有一定的参考价值。
% reduce leading zeros with rx
ind3= find(rx~=0, 1, ‘first‘);
if (isempty(ind3))
rx= gf(0, m, f0);
else
rx= rx(ind3: end);
end
% rx= rx(ind3: end);
g0_vc= rx;
上面标红的一行是冗余行,检查了很久才发现。因为其它程序代码可能发生类似的错误,
所以贴出来增加经验。
以上是关于贴一段Matlab代码的主要内容,如果未能解决你的问题,请参考以下文章