-
HPfuntionuseinmatlabsoftware
这是一个关于matlab下HP滤波器函数代码,非常好用(it is HP funtions used in matlab software)
- 2010-08-04 14:26:48下载
- 积分:1
-
tongji-m
几个用于统计方法的matlab程序,结构简单,运算快捷,节省内存(Several statistical methods for the matlab program, simple structure, computing faster, save memory)
- 2008-05-04 20:48:37下载
- 积分:1
-
BP1_txt
利用BP分类器对烟雾图像进行识别,并将结果存储到TXT文档中。(BP classifier use smoke image recognition, and stores the result TXT document.)
- 2014-01-15 15:51:25下载
- 积分:1
-
yanchi
说明: matlab微分方程中的延迟问题处理代码(matlab differential delays in the processing code)
- 2009-07-29 11:54:42下载
- 积分:1
-
NSGA2-MATLAB-Codes
nsga2算法实例,用于多目标优化,基于pareto排序以及共享函数的多目标遗传算法(An example of NSGA2 algorithm, for multi objective optimization)
- 2014-08-24 15:13:32下载
- 积分:1
-
tu
说明: matlab绘制三维地形图,包含数据和程序,是2011建模题(sfhjrt rtrthrth)
- 2011-09-09 23:49:23下载
- 积分:1
-
distributionPlot
The zip-file contains the following files for visualizing distributions:
- distributionPlot.m: main function that allows creating violin plots
- histogram.m: generate histograms with ideal bin width given the number of data points and the spread (Freedman-Diaconis rule). Note that for integer-valued data, each integer gets its own bin.
- plotSpread.m: plot point clouds with no overlap. Works well for small number of data points, i.e. when there are less than ~20 values per bin.
- 2011-12-24 15:19:30下载
- 积分:1
-
Amorphous
Amorphous定位算法的matlab例程,下载解压后可以直接用(Amorphous localization algorithm)
- 2021-01-31 10:58:37下载
- 积分:1
-
MatchFilterLFM
高分辨率雷达 距离向压缩算法滤波器设计 三种方法 全面设计(clc
clear all
close all
2013年9月28日
---------------参数----------
Tr=42e-6
fs=9.5e6
K=0.7e11
Nfft=2048
-------------匹配滤波 时域生成--------------
t=(-Tr/2+1/fs:1/fs:Tr/2-1/fs)
w = kaiser(length(t),2.5)
w=w
w = ones(1,length(t))
ht1=w.*exp(-1i*pi*K*t.^2)
ht2=w.*exp(1i*pi*K*t.^2)
hf1=fft(ht1,Nfft)
hf2=fft(ht2,Nfft)
figure
subplot(211)
plot(abs(hf1))
title( 匹配滤波器1 幅频响应 )
subplot(212)
plot(phase(hf1))
title( 匹配滤波器1 相位 )
figure
subplot(211)
plot(abs(hf2))
title( 匹配滤波器2 幅频响应 )
)
- 2013-10-12 22:32:06下载
- 积分:1
-
Rombegrg
录入程序代码,并对该实验代码进行调试,检查程序代码中的语法和语义错误。
编写函数f(x)的代码如下:
Romberg算法¨
function z=f(x)
if (x~=0)
z=sin(x)/x
else
z=1
end
备注:在实验代码中,首先输入必要的变量的值如下:
a=0
b=1
tol=1e-8
待查询检查通过,开始输入执行代码
设置格式format short g查看u的值和sin(u)的值:
(Input program code, and debugging code for the experiment to check the program code in the syntax and semantic errors. The preparation of a function f (x) of the code is as follows: Romberg algorithm ¨ function z = f (x) if (x ~ = 0) z = sin (x)/x else z = 1 end Note: In the experimental code, First, enter the necessary value of the variable is as follows: a = 0 b = 1 tol = 1e-8 pending inquiries, checking through, began to enter the implementation of the code format format short g see u, values and sin (u) values:)
- 2009-12-28 22:03:42下载
- 积分:1