Error with mvnrnd function?
9 次查看(过去 30 天)
显示 更早的评论
Hi!
when I run the following code: n = 1000; rho = .7; Z = mvnrnd([0 0], [1 rho; rho 1], n); U = normcdf(Z); X = [gaminv(U(:,1),2,1) tinv(U(:,2),5)];
I get the following error:
??? Undefined function or method 'mvnrnd' for input arguments of type 'double'.
Error in ==> U3 at 3 Z = mvnrnd([0 0], [1 rho; rho 1], n);
seems like I don't have the function. When I do "exist mvnrnd" I get ans = 0.
I am using a 2005 version with the R2011a update. Do I have to installs all updates CDs I have form 2005 to 2011?
Thanks a lot.
------------------------------------------------------------------------------------- MATLAB Version 7.12.0.635 (R2011a) MATLAB License Number: 297946 Operating System: Microsoft Windows 7 Version 6.1 (Build 7601: Service Pack 1) Java VM Version: Java 1.6.0_17-b04 with Sun Microsystems Inc. Java HotSpot™ Client VM mixed mode ------------------------------------------------------------------------------------- MATLAB Version 7.12 (R2011a)
0 个评论
采纳的回答
C.J. Harris
2014-9-5
The function mvnrnd is part of the statistics toolbox. Firstly, in order to use this function you have to have the Statistics Toolbox installed. This can be confirmed using the command:
ver
Secondly, you need to have a license for the Statistics Toolbox, this can be confirmed using the command:
license('test','Statistics_Toolbox')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Manage Products 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!