我正在尝试ezplot我制作的GMM模型。
mu = mean(score,2); % score is a 2500x10 double
cov_sigma = cov(score); % 10x10 double
gm= gmdistribution(mu,cov_sigma); % GMM distibution object
yyy = pdf(gm,score); % 2500x1 double which is my PDF matrix
figure; ezplot(@(x) pdf(gm,x)); % I think I should be using yyy here but this is where I start to get lost; either way doing that also doesn't work %
因此,我知道x
必须是行向量;但是如何定义其范围? (即使yyy
对我也不起作用)很抱歉,但是在绘制pdf的给定功能和范围时,我一直遇到这个问题。还是根本没有其他绘制方法? (我已经看到过使用MathWorks-this,this and also this尝试过并且失败了)同样在检查this时,它是相同的解决方案;需要指定[范围范围]进行绘图,这对我来说是未知的。