-
femsrc
用C/C++编程求解了一个有限元算例二维传热问题,可以作为有限元学习的编程实例,以更好地理解有限元理论,并为进一步使用大型有限元软件打下基础。(With C/C++ Programming to solve a finite element numerical example of two-dimensional heat transfer problems, finite element can be used as examples to learn programming in order to better understand the finite element theory, and for the further use of large-scale finite element software to lay basis.)
- 2008-06-28 12:51:20下载
- 积分:1
-
shape_basedcontentretrieve
说明: 用小波多尺度分析进行基于医学图像形状特征的检索.(wavelet multiscale analysis based medical image retrieval features of the shape.)
- 2006-03-22 12:27:39下载
- 积分:1
-
hys
hystrysis simulink model
- 2013-07-24 12:47:02下载
- 积分:1
-
mylda
liner discriminant analysis
- 2013-03-19 18:09:20下载
- 积分:1
-
复杂网络基本网络模型
用matlab实现建立复杂网络中基本网络模型,其中具体网络模型如下:BA网络模型、NN网络模型、NW网络模型、WS网络模型以及随机图。并且,可计算网络的平均路路径长度、聚类系数、度分布。
- 2022-04-22 07:08:01下载
- 积分:1
-
tftb
说明: MATLAB时频分析工具箱,很红用,很好用,行了吧。靠。(tftb
mmmmmmmmmmmmm)
- 2010-03-25 19:02:27下载
- 积分:1
-
FAST-mean-shift
自己编写的一种快速均值漂移聚类算法。数据需要自己下载,里面有main函数,改成自己的数据就可以运行。主要思路是先用近邻规则粗分类,在运行均值漂移。(fast mean shif clustering algorithm.)
- 2012-05-22 20:54:27下载
- 积分:1
-
classifier_cnn
利用MATLAB实现一个基于CNN的图像分类算法(Implementing an image classification algorithm based on CNN with MATLAB)
- 2019-01-13 16:04:12下载
- 积分:1
-
gx2
说明: 在matlab中分别画出下列两种情况的反射光和透射光的p、s分量的相位随入射角度的变化曲线,并对仿真结果进行对比分析(In MATLAB, the phase curves of the P and s components of the reflected and transmitted light with the incident angle are drawn, and the simulation results are compared and analyzed)
- 2020-05-18 21:51:23下载
- 积分:1
-
baum_welch函数算法说明
function hmm=baum_welch(hmm,obs)
mix=hmm.mix;%高斯混合模型
N=hmm.N;%HMM的状态数
K=length(obs);%训练数据的样本
SIZE=size(obs(1).fea,2);%特征矢量维度
for loop=1:40%训练循环次数
%————计算前向,后向概率矩阵
for k=1:K
param(k)=getparam(hmm,obs(k).fea);
end
%————重估转移概率矩阵A
for i=1:N-1
demon=0;
for k=1:K
tmp=param(k).ksai(:,i,:);
demon=demon+sum(tmp(:));%对时间t,j求和
end
for j=i:i+i
nom=0;
for k=1:k
tmp=prarm(k).ksai(:,i,j);
- 2022-08-24 13:17:56下载
- 积分:1