代码搜索:N1
找到约 6,450 项符合「N1」的源代码
代码结果 6,450
www.eeworm.com/read/241836/13113932
m chkdat.m
function [n1,k]=chkdat(sd,pn,n1)
n=length(n1);
k=0;
for i=1:n
i1=0;
for j=1:sd
if(n1(i)==pn(j))
i1=1;
n1(i)=j;
break;
end
end
www.eeworm.com/read/315719/13537767
m finite_element_tri.m
% 用有限元法求解三角形形区域上的Possion方程
function Finite_element_tri(Imax,Jmax)
global ndm nel na
% ndm 总节点数
% nel 基元数
% na 活动节点数
Imax=30;Jmax=60;%设定网格数
V=0; J=0;X0=1/Imax;Y0=X0;
domain_tri
[X,Y,NN,NE]=
www.eeworm.com/read/307344/13723777
m finite_element_tri.m
% 用有限元法求解三角形形区域上的Possion方程
function Finite_element_tri(Imax,Jmax)
global ndm nel na
% ndm 总节点数
% nel 基元数
% na 活动节点数
Imax=30;Jmax=60;%设定网格数
V=0; J=0;X0=1/Imax;Y0=X0;
domain_tri
[X,Y,NN,NE]=
www.eeworm.com/read/119864/6081902
c euclid.c
/* euclid.c
*
* Rational arithmetic routines
*
*
*
* SYNOPSIS:
*
*
* typedef struct
* {
* double n; numerator
* double d; denominator
* }fract;
*
* radd( a,
www.eeworm.com/read/493843/6391507
m sper.m
function Px = sper(x,win,M,n1,n2)
%SPER Spectrum estimation using periodogram smoothing.
%----
%USAGE Px = sper(x,win,M,n1,n2)
%
% The spectrum of a process x is estimated using periodogram
% s
www.eeworm.com/read/489830/6462320
m impseq.m
function[x,n]=impseq(n0,n1,n2)
n=[n1:n2];x=[(n-n0)==0];
www.eeworm.com/read/488224/6498608
m stepseq.m
function [x,n]=stepseq(n0,n1,n2)
n=[n1:n2]; x=[(n-n0)>=0];
www.eeworm.com/read/409205/11341469
m acf.m
function [ak, lags] = acf(x, m, w)
%ACF compute autocorrelation function at m lags
%--- via Rader's method based on the FFT.
% ==> works for complex-valued signals
%
% Usage: [ak, lags
www.eeworm.com/read/409205/11341523
m acf.m
function [ak, lags] = acf(x, m, w)
%ACF compute autocorrelation function at m lags
%--- via Rader's method based on the FFT.
% ==> works for complex-valued signals
%
% Usage: [ak, lags
www.eeworm.com/read/154760/11928397
m impseq.m
function [x,n] =impseq(n0,n1,n2)
n= [n1:n2];
x= [(n-n0)==0];