资源列表
10086
- you know what -you know whatyou know what
QMB
- 计算球面摆方程,可以得到球面摆的振动方程,便于计算-calculate the pedulum
Sunspot_17531_200112
- 两百多年(1775-2008)的太阳黑子月度数据- Sunspot data
6-Instantaneous-Frequency
- 分解后的一些希尔伯特黄变换,边际谱,瞬时能量,瞬时频率。。。很好的,值得一看-Some decomposed Hilbert-Huang transform, marginal spectrum, instantaneous energy, instantaneous frequency. . . Good, worth a visit. .
handout
- it is note on a The EMS concept comprises hardware and software for the purpose of monitoring and controlling the power system. Typically, the function of monitoring is fully automated. Control functions, however, are either automated or manual. Ener
id218
- market success involved not making small, incremental changes slowly, but rather, making major changes quickly. In this respect, GE operates more like a small company than the enormous one it is.
LOAD_FLOW_STUDIES_02
- The GS method is an iterative algorithm for solving non linear algebraic equations. An initial solution vector is assumed, At every subsequent iteration, the solution is updated till convergence is reached. The GS method applied to po
shadowenhance
- Digital Image processing
LL(1)
- 编译原理 LL(1)分析法 实验报告 C 语言-Compiler principle LL (1) analysis of experimental report C language
1
- Redondance, diversité et parcimonie sont les mots clés du codage correcteur d’erreurs. Du cô té du décodage, il s’y ajoute l’efficacité, c’est-à-dire le souci de tirer le meilleur parti de toutes les informations disponibles. Pour illustrer c
2D-Al-junid-2013
- Coded modulation (CM) is the combination of forward error correction (FEC) and multilevel constellations. Coherent optical communication systems result in a four-dimensional (4D) signal space, which naturally leads to 4D-CM transceivers. A pr
eliminationgauss
- Systems of linear equations Our Matlab function for naive Gaussian elimination looks like this: function x = naiv_gauss(A,b) n = length(b) x = zeros(n,1) for k=1:n-1 forward elimination for i=k+1:n xmult = A(i,k)/A(k,k) for j=k+1:n