-
aab
相位重构用matalab编写的,感觉很不错,看看吧
(Written in phase reconstruction with matalab feels really good to see it)
- 2010-08-03 21:55:22下载
- 积分:1
-
Matlabbpshenjingwangluo
介绍了Matlab的神经网络算法,对具体的事列进行了分析和计算。(Introduction of the Matlab neural network algorithms, on specific matters set out an analysis and calculation.)
- 2009-03-23 15:13:46下载
- 积分:1
-
FM
说明: FM调制与解调(MATLAB程序与图)
FM也是一种调制方式,即使在短波范围内的27-30MHz之间,做为业余电台、太空、人造卫星通讯应用的波段,也有采用调频(FM)方式的。(FM modulation and demodulation (MATLAB program and map) FM is a modulation, even in the short wavelength range of between 27-30MHz, as amateur radio, space, satellite communications band applications, but also by frequency modulation (FM) way.)
- 2011-06-11 22:36:05下载
- 积分:1
-
regression
回归分析 很详细有各种例子及matlab代码和运行结果图 (Regression analysis in great detail a variety of examples and matlab code and operating results Figure)
- 2014-10-08 20:30:26下载
- 积分:1
-
jryysmma
真的是一个好程序,用MATLAB实现动态聚类或迭代自组织数据分析,包括回归分析和概率统计,车牌识别定位程序的部分功能,部分实现了追踪测速迭代松弛算法,使用matlab实现智能预测控制算法,进行波形数据分析,包括主成分分析、因子分析、贝叶斯分析。( Really is a good program, Using MATLAB dynamic clustering or iterative self-organizing data analysis, Including regression analysis and probability and statistics, Part of the license plate recognition locator feature, Partially achieved tracking speed iterative relaxation algorithm, Use matlab intelligent predictive control algorithm, Waveform data analysis, Including principal component analysis, factor analysis, Bayesian analysis.)
- 2016-04-06 21:27:42下载
- 积分:1
-
IDVR
This paper presents a dual voltage source inverter
(DVSI) scheme to enhance the power quality and reliability of
the microgrid system. The proposed scheme is comprised of two
inverters, which enables the microgrid to exchange power generated
by the distributed energy resources (DERs) and also to
compensate the local unbalanced and nonlinear load. The control
algorithms are developed based on instantaneous symmetrical
component theory (ISCT) to operate DVSI in grid sharing and
grid injecting modes. The proposed scheme has increased reliability,
lower bandwidth requirement of the main inverter, lower
cost due to reduction in filter size, and better utilization of microgrid
power while using reduced dc-link voltage rating for the
main inverter. These features make the DVSI scheme a promising
option for microgrid supplying sensitive loads. The topology and
control algorithm are validated through extensive simulation and
experimental results.
- 2016-07-26 13:07:00下载
- 积分:1
-
weiji04
4.1 数据寻址方式
4.1.1 立即数寻址方式
4.1.2 寄存器寻址方式
4.1.3 存储器寻址方式
4.2 数据传送类指令
4.2.1 数据传送指令
4.2.2 堆栈操作指令
4.2.3 地址传送指令
4.3 算术运算类指令
4.3.1 加法指令
4.3.2 减法指令
4.3.3 乘法除法等指(you can see see)
- 2009-12-03 09:05:55下载
- 积分:1
-
80216abc-01_39
PDF matlab used for wimax
- 2010-05-25 18:17:47下载
- 积分:1
-
halflog
使用matlab画的半对数坐标纸(两种图纸)(Use matlab painting semi-logarithmic coordinate paper (two drawings))
- 2011-08-05 21:06:12下载
- 积分:1
-
fractal-use
分形的练习一
①Koch曲线
用复数的方法来迭代Koch曲线
clear i 防止i被重新赋值
A=[0 1] 初始A是连接(0,0)与(1,0)的线段
t=exp(i*pi/3)
n=2 n是迭代次数
for j=0:n
A=A/3 a=ones(1,2*4^j)
A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a]
end
plot(real(A),imag(A))
axis([0 1 -0.1 0.8])
②Sierpinski三角形
A=[0 1 0.5 0 0 1] 初始化A
n=3 迭代次数
for i=1:n
A=A/2 b=zeros(1,3^i) c=ones(1,3^i)/2
A=[A A+[c b] A+[c/2 c]]
end
for i=1:3^n
patch(A(1,3*i-2:3*i),A(2,3*i-2:3*i), b ) patch填充函数
end
(Fractal
Exercise One
The ① Koch curve
Plural iteration Koch curve
clear i to prevent i is reassigned
A = [0 1] initial A is a connection (0,0) and (1,0) of the segments
t = exp (i* pi/3)
n = 2 n is the number of iterations
for j = 0: n
A = A/3 a = ones (1,2* 4 ^ j)
A = [A (t* A+ a/3) (A/t+ (1/2+ sqrt (3)/6* i)* a) A+2/3* a]
end
plot (real (A), imag (A))
axis ([0 1-0.1 0.8])
② Sierpinski triangle
A = [0 1 0.5 0 0 1] initialized A
n = 3 the number of iterations.
for i = 1: n
A = A/2 b = zeros (1,3 ^ i) c = ones (1,3 ^ i)/2
A = [A A+ [c b] A+ [c/2 c]]
end
for i = 1:3 ^ n
patch (A (1,3* i-2: 3* i), A (2,3* i-2: 3* i), b ) patch filled function
end)
- 2013-03-02 10:03:09下载
- 积分:1