-
ls
说明: 这是一个LS-SVM的预测实例,主要实现对击穿电压的预测出图形,希望能够给与帮助~(This is an instance of LS-SVM' s prediction, the main achievement of the predicted breakdown voltage graph, hoping to give help ~)
- 2011-09-27 18:25:40下载
- 积分:1
-
RS223_CONV_BPSK_simulink
MATLAB程序调用SIMULINK的级联码误码仿真RS223_CONV_BPSK_simulink(MATLAB SIMULINK RS223_CONV code RS223_CONV_BPSK_simulink)
- 2013-10-03 16:45:44下载
- 积分:1
-
Chapter_6
LPC sample code 6 matlab
- 2013-05-04 15:13:28下载
- 积分:1
-
zhendong
《机械振动基础》是为航空宇航科学与技术、机械工程、力学、动力工程和交通运输工程等专业的本科生编写的基础课教材。《机械振动基础》共分6章,包括单自由度系统的振动、多自由度系统的振动、无限自由度系统的振动、振动分析的近似方法和数值方法、非线性振动以及振动实验。附录介绍了如何使用数值分析软件平台MATLAB计算振动问题。《机械振动基础》结构严谨,内容丰富,强调分析、计算与实验相结合,借鉴了国际著名大学的机械振动教学计划,融入了作者多年的教学和研究成果,反映了工程振动领域的新进展。("Base" mechanical vibration is written for Aerospace Science and technology, mechanical engineering, mechanical, power engineering and transportation engineering and other professional undergraduate course teaching. "Base" mechanical vibration is divided into 6 chapters, including single degree of freedom system, the vibration of multi degree of freedom system vibration, infinite degree of freedom vibration system, the vibration analysis of the approximation method and numerical method, the nonlinear vibration and vibration experiment. The appendix describes how to use the numerical calculation and analysis of vibration problem of software platform MATLAB. "Base" mechanical vibration strict structure, rich in content, stress analysis, calculation and experiment are combined, the mechanical vibration program of international famous university, the author has incorporated many years of teaching and research, reflecting the new progress of Engineering Vibration field.)
- 2014-03-17 14:11:19下载
- 积分:1
-
EMD
EMD 方法在理论上可以应用于任何类型的信号的分解, 因而在处理非平稳及非线性数据上,具有非常明显的优势,适合于分析非线性、非平稳信号序列,具有很高的信噪比。(EMD decomposition method in theory can be applied to any type of signal, which in the non-stationary and nonlinear data, with a very distinct advantage, suitable for analyzing nonlinear and non-stationary signal sequence, with a high signal to noise ratio .)
- 2014-11-25 18:54:48下载
- 积分:1
-
roof
CODE FOR COMPUTATIONAL FRACTAL. YOU CAN USE IN MATLAB SOFTWARE.
- 2013-10-19 04:30:04下载
- 积分:1
-
sj5
该matlab程序实现字母T和L的区分,在9*9格形框里,字母T和L有不同的位置,任意位置,神经网络都可以识别出是T还是L(The program matlab and distinguish letters L, T, in the grid-shaped box 9* 9, the letters L and T have different locations anywhere in the neural network can identify a T or L)
- 2014-01-12 13:26:10下载
- 积分:1
-
VectorExtraction
Extracting Vectors from Arrays
- 2012-07-20 01:08:56下载
- 积分:1
-
calc_3stage_FIR
3阶段fir数字滤波器生成。用于生成所需fir滤波器系数,适用于CDMA的数字中频处理。(calc 3 stage FIRcoefficients used in cdma)
- 2013-11-04 09:38:15下载
- 积分:1
-
EEE-212-lab-sheet
empirical formula with kaiser
clc
clear all
fs=1000
fc=250
df=50
r=0.001
f=fc/fs
dw=2*pi*(df/fs)
a=-20*log(r)
n=floor(((a-8)/(2.285*dw))+1)
if a>50
b=0.1102*(a-8.7)
elseif a>=21 && a<=50
b=0.5842*((a-21)^0.4)+0.07886*(a-21)
elseif a<21
b=0.0
end
w=kaiser(n,b)
for i=1:n
if i~=(n-1)/2
hd(i)= (2*f*sin((i-((n-1)/2))*2*pi*f))/((i-((n-1)/2))*2*pi*f)
elseif i==(n-1)/2
hd(i)=2*f
end
end
for j=1:n
h(j)=w(j)*hd(j)
end
subplot(3,1,1), plot(w)
subplot(3,1,2), plot(h)
subplot(3,1,3), plot(h,n)
- 2014-12-24 23:21:13下载
- 积分:1