-
MATLAB
最大最全的matlab实用教程电子版,Very good
(Matlab largest and most practical course of the entire electronic edition, Very good)
- 2009-06-11 15:43:43下载
- 积分:1
-
testexample
MATALB 优化算法,模拟退火解决TSP问题(MATALB optimization algorithm, simulated annealing to solve the TSP problem)
- 2014-08-11 16:13:02下载
- 积分:1
-
path-palnning---matlab
机器人路径规划程序,matlab实例。图片分析比较全面。(Robot path planning procedures, matlab instance.)
- 2020-12-18 14:49:10下载
- 积分:1
-
citynavi
模拟城区建筑对车载接收机的遮挡情况,输入道路宽度与建筑物的分布参数,即可进行仿真,可设定车辆速度。(navigation simulation program )
- 2010-11-11 10:52:15下载
- 积分:1
-
SaS_Aprox
Aproximation of discrete impuls with sinus function in Matlab
- 2010-11-18 20:35:21下载
- 积分:1
-
LTI
First steps in Linear Systems analysis (step response, impulse response, stability, Nyquist/Bode plots, gain/phase margins etc.)
- 2011-02-08 03:41:59下载
- 积分:1
-
MatlabSRC
说明: 精通Matlab综合辅导与指南-源程序随书带的光盘(proficient Matlab comprehensive counseling and guidance-source book with a CD-ROM)
- 2006-05-03 18:12:04下载
- 积分:1
-
1
说明: 有限差分法,解决偏微分方程的其中的一种解法(Finite difference method to solve partial differential equations in which a solution)
- 2013-04-13 23:25:07下载
- 积分:1
-
CTelevision
定义一个描述电视的CTelevision类。类中包含电视品牌(p_brand,使
用指针类型)、当前频道(channel,一共500个频道)和当前音量(volume,
最大30)等数据成员。要求提供缺省以及带参构造函数,以及输出对象信息
方法。(A class definition television CTelevision description. Class contains TV brands (p_brand, so
Pointer type), the current channel (channel, a total of 500 channels) and the current volume (volume,
Maximum 30) and other data members. Requirements and provides a default constructor with parameters, and output object information
Methods.)
- 2015-01-29 23:08:50下载
- 积分: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