代码搜索:FQ
找到约 756 项符合「FQ」的源代码
代码结果 756
www.eeworm.com/read/390354/8470256
m fq.m
function u=fq(m,n)
%找出m到n的全体素数 fq(m,n)
%若仅有一个参数则m = 2,给出参数作为n
%若没有参数则m = 2,n = 100
%1999.3
if nargin == 0,
m = 2; n = 100;
elseif nargin == 1,
n = m; m = 2;
end
i=1;
for t = m:n,
www.eeworm.com/read/289179/8570171
m fq.m
function u=fq(m,n)
%找出m到n的全体素数 fq(m,n)
%若仅有一个参数则m = 2,给出参数作为n
%若没有参数则m = 2,n = 100
%1999.3
if nargin == 0,
m = 2; n = 100;
elseif nargin == 1,
n = m; m = 2;
end
i=1;
for t = m:n,
www.eeworm.com/read/280180/10349802
vhd fq.vhd
-- WARNING: Do NOT edit the input and output ports in this file in a text
-- editor if you plan to continue editing the block that represents it in
-- the Block Editor! File corruption is VERY likel
www.eeworm.com/read/465502/7055748