我是靠谱客的博主 美好小伙,最近开发中收集的这篇文章主要介绍Matlab高斯混合模型报错:Undefined function 'fitgmdist' for input arguments of type 'struct',觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

工作环境(蓝色粗体字为特别注意内容)
1,软件环境:Windows 7 Ultimate sp1、matlabR2012b 32bit
2,参考文献:①
https://jp.mathworks.com/products/statistics.html②https://blog.csdn.net/zhansama/article/details/82745128

Matlab2012b中使用高斯混合模型报错:

gm = fitgmdist(X,2,'Options',options)

Undefined function 'fitgmdist' for input arguments of type 'struct'.
了解相关信息,发现fitgmdist函数是Statistics and Machine Learning Toolbox工具箱中的东西,一筹莫展之际,看到了参考文献②,于是将高斯混合模型改为:

gm=gmdistribution.fit(X,2,'Covtype','Diagonal','Regularize',1e-10,'Options',options);

顺利执行。

最后

以上就是美好小伙为你收集整理的Matlab高斯混合模型报错:Undefined function 'fitgmdist' for input arguments of type 'struct'的全部内容,希望文章能够帮你解决Matlab高斯混合模型报错:Undefined function 'fitgmdist' for input arguments of type 'struct'所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部