-
gauss_sidel
This code finds the solution to a system of simultaneous linear equation using Gauss_Seidel Method.
- 2013-04-06 18:55:13下载
- 积分:1
-
matlabfigureprogram
100个matlab画图源程序,对你一定有用。(100 matlab drawing source, you must.)
- 2013-05-13 15:38:35下载
- 积分:1
-
2d-logistic-regression-demo
2d logistic regression demo
- 2014-02-20 12:04:00下载
- 积分:1
-
kaustyhq
虚拟力的无线传感网络覆盖,MIMO OFDM matlab仿真,实现了对10个数字音的识别程序欢迎大家下载学习,使用高阶累积量对MPSK信号进行调制识别,车牌识别定位程序的部分功能,相关分析过程的matlab方法。( Virtual power wireless sensor network coverage, MIMO OFDM matlab simulation, Realization of 10 digital audio recognition program Welcome to download the study, Using high-order cumulants of MPSK signal modulation recognition, Part of the license plate recognition locator feature, Correlation analysis process matlab method.)
- 2016-03-30 20:38:45下载
- 积分:1
-
比例谐振控制
基于PR控制器的三相PMSM矢量控制仿真模型(Simulation Model of Three-Phase PMSM Vector Control based on PR Controller)
- 2021-03-20 11:19:19下载
- 积分:1
-
rbf_Kmeans
基于k均值聚类方法的rbf网络源程序,有需要的就下载吧,(K means clustering method based on rbf network source, there is need to download it,)
- 2010-05-08 16:31:37下载
- 积分:1
-
system-simulation
该段matlab可实现自由摆系统的演示。(The segment can be realized matlab free pendulum system demonstration.)
- 2013-07-19 14:26:11下载
- 积分:1
-
pingfenchengxu
设计一个可以输入若干评委分数的表单,可以通过两个for循环分别找出分数的最大值和最小值,存入到两个变量,把评委的分数存入到一个数组中,计算时去掉找出的最大值和最小值即可得出最后得分。
(You can enter a number of judges to design a fractional form, you can find the maximum and minimum scores for each through two loops, credited to two variables, the judges scores deposited into an array, remove the calculation to find out the maximum and minimum values to arrive at a final score.)
- 2013-12-23 21:50:31下载
- 积分:1
-
siebiu_v79
Gabor小波变换与PCA的人脸识别代码,基于人工神经网络的常用数字信号调制,相参脉冲串复调制信号。( Gabor wavelet transform and PCA face recognition code, The commonly used digital signal modulation based on artificial neural network, Complex modulation coherent pulse train signal.)
- 2017-01-16 21:05:07下载
- 积分: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