-
The-usage-of-Matlab-functions
Matlab 命令大全详细介绍了Matlab中常用函数的用法以及应用举例,包括数值计算函数、数学变换函数以及绘图函数等(The book of the usage of Matlab functions details the application of commonly used functions in Matlab and application examples, including the numerical functions, mathematical transformation functions and graphics functions and so on )
- 2013-11-27 07:48:51下载
- 积分:1
-
OptimizationofaDoubleWishboneSuspensionSystem
This demo shows how to use MATLAB, Optimization Toolbox, and Genetic Algorithm and Direct Search Toolbox to optimize the design of a double wishbone suspension system.
- 2007-09-09 16:24:42下载
- 积分:1
-
modified_jakes
说明: jake信道的仿真模型,matlab语言实现,可以用于一般移动无线信道的仿真(the simulation model of Jake channel, be completed in matlab, be simulated to mobile wireless communication channel )
- 2005-09-11 10:57:44下载
- 积分:1
-
matlab-functions-query
matlab常用函数查询,编程很有用的东西。(matlab commonly used functions query)
- 2013-01-15 11:55:45下载
- 积分:1
-
humanMotion
人体运动捕捉的相关应用代码,能够解决基础问题,对于运动捕捉数据处理有很好的用途。(Human motion capture relevant application code that can solve basic problems, motion capture data processing for a very good purpose.)
- 2013-12-08 11:04:09下载
- 积分:1
-
MPSK
说明: mpsk的调试源程序,详细介绍了整个调制的过程和源码分析(mpsk debugging source code, detailing the entire process and source of modulation)
- 2010-04-23 13:23:19下载
- 积分:1
-
M-Files
线性四面体元的有限元分析可直接利用的函数,包括求刚度矩阵,求体积,求整体刚度矩阵等,有重要的利用价值(Linear tetrahedral element finite element analysis can be directly used for functions, including seeking stiffness matrix, the volume demand, the global stiffness matrix of such demand, there is significant value in use)
- 2010-06-02 12:13:12下载
- 积分:1
-
AIS自动船舶显示系统
说明: matlab GUI 编程实现AIS自动船舶系统显示(Programming AIS automatic ship system display)
- 2020-04-26 13:08:40下载
- 积分: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
-
ASK
2ASK的链路仿真,信号源的产生,PCM编码,调制解调以及加燥(2 ask link simulation signal source, PCM coding and modulation demodulation and dry)
- 2015-04-16 09:47:39下载
- 积分:1