代码搜索:移相法

找到约 10,000 项符合「移相法」的源代码

代码结果 10,000
www.eeworm.com/read/256954/11963173

m hjjsort.m

function B=hjjsort(A) % 将A=[3 1 4 7 6 9]置换成【7 9 6 3 4 1】 N=length(A);t=[0 0]; for i=1:N temp(i,2)=A(i); temp(i,1)=i; end for i=1:N-1 % 沉底法将 A 排序 f
www.eeworm.com/read/342746/12003953

m my_ode_rough.m

function my_ode_rough % 一步Euler法求解 % $sunshengli@sohu.com $ % $Date: 2005/07/20 $ h = 0.1; t = 0:h:20 x(1)= -4; for k=1:(length(t)-1) x(k+1)=x(k)+h*(-0.2*x(k)+2) ; en
www.eeworm.com/read/341613/12075308

m 5-7.m

%例程5-7 功率谱估计的周期图法 % e.g.5-7.m for example5-7; % to test function of periodogram; %Estimate the PSD with periodogram method(By formula directly) clear; % Case 1: N=256 N=256; n=0:N-1; f1=
www.eeworm.com/read/152832/12079254

cpp eigenvalue.cpp

/*幂法求实对称矩阵特征值*/ #include #include #include #include #include #include #include "conio.h" #include "eigen.h" #define EPSILON 1.0e
www.eeworm.com/read/152351/12120419

inl extremum.inl

// Extremum.inl 计算极值函数(方法)定义头文件 // Ver 1.0.0.0 // 版权所有(C) 何渝, 2002 // 最后修改: 2002.5.31. #ifndef _EXTREMUM_INL //避免多次编译 #define _EXTREMUM_INL //一维极值连分式法 template void ExtremumF
www.eeworm.com/read/152326/12121093

m hjjsort.m

function B=hjjsort(A) % 将A=[3 1 4 7 6 9]置换成【7 9 6 3 4 1】 N=length(A);t=[0 0]; for i=1:N temp(i,2)=A(i); temp(i,1)=i; end for i=1:N-1 % 沉底法将 A 排序 f
www.eeworm.com/read/151583/12193858

txt 7189.txt

日月光华 -- Health精华区文章阅读 -------------------------------------------------------------------------------- 发信人: helen (紫晓), 信区: Health 标 题: 被刀割伤的止血法 发信站: 日月光华 (2002年11月24日13:17:20 星期天), 站内信件
www.eeworm.com/read/253807/12196689

htm go_3851.htm

中华人民共和国建筑法
www.eeworm.com/read/339820/12202524

txt c语言库函数(u类字母).txt

函数名: ultoa 功 能: 转换一个无符号长整型数为字符串 用 法: char *ultoa(unsigned long value, char *string, int radix); 程序例: #include #include int main( void ) { unsigned
www.eeworm.com/read/339820/12202534

txt c语言库函数(o类字母).txt

函数名: open 功 能: 打开一个文件用于读或写 用 法: int open(char *pathname, int access[, int permiss]); 程序例: #include #include #include #include int main