代码搜索:N
找到约 10,000 项符合「N」的源代码
代码结果 10,000
www.eeworm.com/read/153071/12061957
m n_sum.m
function result=n_sum(x,y,image);
% image is the source image
% x,y can not be the boundary
s=0;
s= s + image(x,y-1);
s= s + image(x-1,y-1);
s= s + image(x-1,y);
s= s + image
www.eeworm.com/read/255584/12071688
jpg n288.jpg
www.eeworm.com/read/255584/12071702
gif n628.gif
www.eeworm.com/read/255584/12071731
gif n508.gif
www.eeworm.com/read/255584/12071763
jpg n608.jpg
www.eeworm.com/read/255584/12071776
jpg n188.jpg
www.eeworm.com/read/152883/12075896
m input_n.m
%输入非线性环节参数
col0=[0.7 0.7 0.7]; %浅灰色,窗体背景色
col1=[0.8 0.8 0.8]; %深灰色,输入框无效时的颜色
%创建输入非线性环节参数窗体
nawin=figure('color',col0,'position',[100 200 400 200],...
'name','输入非线性环节参数','menubar',
www.eeworm.com/read/255007/12106239
m n_df.m
function y=n_df(a,n,x)
y=0.0;
for i=1:n
y=y+a(i)*(n+1-i)*x^(n-i);
end
www.eeworm.com/read/255007/12106252
m n_f.m
function y=n_f(a,n,x)
y=0.0;
for i=(n+1)(n+1)
y=y+a(i)*x^(n+1-i);
end
www.eeworm.com/read/152488/12110073