-
mytsp
matlab code for tsp with GA
- 2013-11-21 03:56:24下载
- 积分:1
-
Asynchronous-motor
这是给异步电机仿真初学者比较好的资料(仿真模型),可以学习一下,然后自己就能搭建出异步发电机的模型了。省得大家走弯路(This is a simulation of asynchronous motor starter is good information(Simulation models), you can learn about and build asynchronous generator models, all by themselves.Save all detours)
- 2014-06-13 14:59:54下载
- 积分:1
-
work
信号功率谱分析,方法三、四,已在此详细编写(Signal power spectral analysis, methods, three, four, has been prepared in detail here)
- 2009-10-20 23:04:15下载
- 积分:1
-
xx
说明: image steganography encryption and decryption using matlab
- 2015-02-24 18:52:04下载
- 积分:1
-
H.323
H.323.rar 功能的说明H.323.rar 功能的说明
- 2009-04-11 14:04:09下载
- 积分:1
-
sim_qpskgray_multipath
O-QPSK modulation and demodulation taking into account Multi-path Fading
- 2009-10-30 07:26:38下载
- 积分:1
-
4465
circular convolution and some matlab codes
- 2014-12-31 14:51:50下载
- 积分:1
-
zuiyouhuafangfaMatlab
《最优化方法及其Matlab程序设计》较系统地介绍了非线性最优化问题的基本理论和算法,以及主要算法的Matlab程序设计,主要内容包括(精确或非精确)线搜索技术、最速下降法与(修正)牛顿法、共轭梯度法、拟牛顿法、信赖域方法、非线性最小二乘问题的解法、约束优化问题的最优性条件、罚函数法、可行方向法、二次规划问题的解法、序列二次规划法等。(" Optimization Methods and Matlab programming" more systematic introduction to the basic theory and algorithms nonlinear optimization problem and the main algorithm Matlab programming, the main contents include (exact or non-exact) line search technique, the steepest descent method and (corrected) Newton method, conjugate gradient method, quasi-Newton method, trust region methods, solution of nonlinear least squares problems, constrained optimization problem optimality conditions, penalty function method, feasible direction method, quadratic programming problems The solution, the sequential quadratic programming method.)
- 2014-02-25 15:19:48下载
- 积分:1
-
license-number-1
This is a matlab code for car license number recogniser.
- 2011-06-13 23:55:03下载
- 积分:1
-
Blocks
clc
close all
clear all
I=imread( desert.jpg )
[r c]=size(I)
bs=16 Block Size (8x8)
nob=(r/bs)*(c/bs) Total number of 8x8 Blocks
Dividing the image into 8x8 Blocks
kk=0
for i=1:(r/bs)
for j=1:(c/bs)
Block(:,:,kk+j)=I((bs*(i-1)+1:bs*(i-1)+bs),(bs*(j-1)+1:bs*(j-1)+bs))
end
kk=kk+(r/bs)
end
Accessing individual Blocks
figure imshow(Block(:,9,1)) This shows u the fist 8x8 Block in a figure window
figure imshow(Block(:,:,2))
- 2013-03-17 15:01:05下载
- 积分:1