-
Matlab_
一本有关matlab介绍比较详尽的书籍,其中有代码介绍,对于初学者来说,可以选择性学习。(A book on matlab image processing of the comparatively detailed book。There are code introduction, for beginners, can selective learning.
)
- 2012-10-10 18:46:41下载
- 积分:1
-
Lab2
This is the second tutorial of a series of image processing tutorials
- 2015-03-05 05:03:18下载
- 积分:1
-
matrix_mul_block_parallel
此程序使用MPI实现两个矩阵的相乘,使用的语言是C(This program uses MPI to achieve multiply two matrices, the use of the language is C)
- 2011-05-13 22:53:57下载
- 积分:1
-
blead
基于伯德图的超前校正解析设计法根据所需闭环性能计算校正器的传递函数
(Analytical design method based on the Bode diagram of the lead compensator transfer function of the desired closed-loop performance computing Correction)
- 2012-05-27 17:18:50下载
- 积分:1
-
radar_match_filtering
雷达匹配数字滤波器的matlab simulink实现,通信专业本科毕业论文用的到的。(Matched radar matlab simulink realization of digital filters, communication undergraduate thesis used to.)
- 2013-10-16 16:35:04下载
- 积分:1
-
xiezuo
协作通信中的AF,DF转发的matlab代码,其中还有一些是编码的代码。(Collaborative communication of AF, DF forwarding of matlab code, and some of them are encoded code.
)
- 2013-11-12 17:03:07下载
- 积分:1
-
z_sfun
AN MATLAB DESIGN OF PV ARRAY for zsource
- 2013-05-02 17:42:41下载
- 积分:1
-
hypocent.m.tar
A code for locating an earthquake
- 2009-12-14 04:50:38下载
- 积分:1
-
FMCW-Radar-Simulator-master
说明: 1) 这是一个基于MATLAB的FMCW射频雷达模拟器。
2) 它产生FMCW雷达,用于近距离的手波啁啾电平信号数据。
3) 你可以尝试在这个模拟器上开发你的雷达数据处理算法。
4) 作为一个查伦奇,你能开发你的算法来检测手写方向:左或右。
5) 在matlab中运行main.m开始尝试。(1) This is a MATLAB based FMCW RF Radar Simulator.
2) It generates FMCW radar for close handwave chirp level signal data.
3) Your can try develop your radar data processing algorithm base on this simulator.
4) As a charllenge, can you develope your algorithm to detect the handwave directions: LEFT or RIGHT.
5) Run main.m in matlab to start trying out.)
- 2020-03-18 10:22:43下载
- 积分:1
-
conversion_gui
function ret = Int2Hex(var)
Prints integer array to hexadecimal string
varType = class(var)
cast signness away:
if ( u ~= varType(1) )
varType = [ u varType]
var = typecast(var,varType)
end
nBits = str2double(varType(5:end))
if (64 == nBits)
split 64 bit case into two 32 s
cuz dec2hex doesn t handle 64 bit...
varType(5:end) = 32
var = typecast(var,varType)
end
ret = dec2hex(var)
if (64 == nBits)
littleEndian = all(typecast(uint32(1), uint16 )==[1 0])
first = 1 + littleEndian
second = 2 - littleEndian
ret = [ret(first:2:end,:),ret(second:2:end,:)]
end
end
- 2010-07-30 09:39:56下载
- 积分:1