搜索资源列表
clc
- 用matalb程序来实现求一个连通图的最小生成树-matalb procedures used to achieve a graph for the minimum spanning tree
gonglvpumatlab
- 功率谱估计matlab防真程序 从介绍功率谱的估计原理入手,分析了经典谱估计和现代谱估计两类估计方法的原理、各自特点及在Matlab中的实现方法率谱估计 周期图法 AR参数法-power spectrum estimation procedures Matlab defense from introducing real power spectrum estimation principle start, Analysis of the spectral estimation classic a
mallat.m
- 小波谱分析mallat算法经典程序 clc clear %% 1.正弦波定义 f1=50 % 频率1 f2=100 % 频率2
clc
- 不使用中值滤波函数,直接运用MATLAB编写中值滤波程序
matlab常用命令
- 有关命令行环境的一些操作: (1) clc 擦去一页命令窗口,光标回屏幕左上角 (2) clear 从工作空间清除所有变量 (3) clf 清除图形窗口内容-the command-line environment for the operation of : (a) liquidchromatographic order to remove a window screen cursor to the upper left corner (2) clear from the work s
闰年计算
- data segment ;定义数据段 infon db 0dh,0ah,'Please input a year: $' Y db 0dh,0ah,'This is a leap year! $' N db 0dh,0ah,'This is not a leap year! $' w dw
富麗葉係數
- clc clear all amp_sin1 = 1; freq_sin1 = 200; N =15; resolu = 10^(-6); t = [0:resolu:0.025];% unit = sec. [sinc_wave1] = sinc_wav(amp_sin1,N,freq_sin1,t); plot(t,sinc_wave1,'k-') axis([0,0.025,-2,2]) xlabel('time(sec.)') ylabel('amplitude')
单频脉冲
- 单频脉冲 close all;clear all;clc; x=-5:0.05:5; y=-1:0.05:1; [X,Y]=meshgrid(x,y); T=5; b=pi*Y.*(T-abs(X))+eps; c=((sin(b).*(T-abs(X)))./(T*b)); Z=abs(c); surf(X,Y,Z),title('单载频矩形脉冲信号模糊图'),xlabel('时间'),ylabel('频率');
lssvm
- %% 清空环境 clc clear load wine; train = [wine(1:30,:);wine(60:95,:);wine(131:153,:)]; train_label = [wine_labels(1:30);wine_labels(60:95);wine_labels(131:153)]; test = [wine(31:59,:);wine(96:130,:);wine(154:178,:)]; test_label = [wine_labels(31
segsnr.利用matlab进行语音信号的信噪比求解
- 利用matlab进行语音信号的信噪比求解。。,clc clear x=wavread( x1 ) y=wavread( y1 )
eucalyptus-1.6.2 云计算平台eucalyptus源代码
- 云计算平台eucalyptus源代码,其中我分析了集群控制器和关于存储方面(storage,CLC下的walrus,SC)的代码,让大家对该平台有个了解和提升-Cloud computing platform eucalyptus source code, which I analyzed the cluster controller and on the storage (storage, CLC under the walrus, SC) of the code, so that we ha
蚁群算法求解TSP问题的matlab程序
- %蚁群算法求解TSP问题的matlab程序 clear all close all clc %初始化蚁群 m=31;%蚁群中蚂蚁的数量,当m接近或等于城市个数n时,本算法可以在最少的迭代次数内找到最优解 C=[1304 2312;3639 1315;4177 2244;3712 1399;3488 1535;3326 1556;3238 1229;4196 1004; 4312 790;4386 570;3007 1970;2562 1756;2788 1491;2381 1
2007122915522
- 摘要:介绍了集成温度传感器AD590,给出了AD590测量热力学温度、摄氏温度、两点温度差、多点最低温度、多点平均温度的具体电路,并以节能型温、湿度控制系统为例介绍了利用AD590测两点温差电路的应用。 关键词: AD590;集成温度传感器;温度差; 中图分类号:TP368 TP212.11文献标识码:A 文章编号::1006-883X(2003)03-0035-03 -Abstract: This paper presents an integrated temperature s
cgh
- 计算全息close all clc clear A=zeros(64) A(15:20,20:40)=1 A(15:50,20:25)=1 A(45:50,20:40)=1 A(30:34,20:35)=1 % ppp=exp(rand(64)*pi*2*i) A=A.*ppp % Author s email: zjliu2001@163.com figure imshow(abs(A),[]) Fa=fft2(fftshift(A)) Fs=fftshi
q
- matlab最常用命令 1.有关命令行环境的一些操作: (1) clc 擦去一页命令窗口,光标回屏幕左上角 (2) clear 从工作空间清除所有变量 (3) clf 清除图形窗口内容 (4) who 列出当前工作空间中的变量 (5) whos 列出当前工作空间中的变量及信息 或用工具栏上的 Workspace 浏览器
CPLD
- 摘要:本文主要介绍以CPLD 芯片进行十字路口的交通灯的设计,用CPLD 作为交通灯控制器的主控芯片,采用VHDL 语言编写控制程序,利用CPLD的可重复编程和在动态系统重构的特性,大大地提高了数字系统设计的灵活性和通用性。 关键词:CPLD;VHDL;交通灯控制器 中图分类号:TP39 Abstract :This paper introduces the electronic-traffic lamp, which is based on the VHDL and is co
LMS
- LMS算法实现自适应滤波 clear close all clc N=10000 设置仿真长度 信号产生参数设定 a1=-0.195 a1=-1.5955 a2=0.95 R0=[1,a1,a2 a1,1+a2,0 a2,a1,1] p=[1,0,0] r=inv(R0)*p 计算理论自相关函数 R=[r(1),r(2) r(2),r(1)] 生成理论自相关矩阵 p1=[r(2),r(3)] 生成互相关 h=inv(R)
xsk_1
- 产生Stripmap SAR的回波 clear all clc thetaT=0 T平台波束斜视角 thetaT=thetaT*pi/180 rad thetaR=0 R平台波束斜视角 thetaR=thetaR*pi/180 c=3e8 光速 fc=1.5e9 载频 lambda=c/fc 波长 测绘带区域- 产生Stripmap SAR的回波 clear all clc thetaT=0 T平台波束斜视角 thetaT=
ofdm-tge
- OFDM程序,这么安排矩阵的目的是为了构造共轭对称矩阵 共轭对称矩阵的特点是 在ifft/fft的矢量上 N点的矢量 在0,N/2点必须是实数 一般选为0 1至N/2点 与 (N/2)+1至N-1点关于N/2共轭对称- BPSK simulation using a carrier cosine wave with ISI clc close all clear all figure(1) n=160 for i=1:n data(i
tec-xp+基本指令和扩展指令
- 29条基本指令和clc jrns calr扩展指令真值表,适用于tec-xp+16位教学机,通过编译软件编译,写入match芯片(tec-xp+16 29basic clc jrns calr match chip)