A function in file exchange which is not clear to me
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I am running a matlab file which is using this function. The code written there is here below my question.
My problem is: the whole code is under a comment sign. Is it written in an algorithmic-like way?
Does anyone understand what is the code I should use?
Thanks!
function [y]=bivnor(a,b,rho)
%function [y]=bivnor(a,b,rho)
%
% This function give an approximation of
% cumulative bivariate normal probabilities
%
% 1 x^2 - 2*r*x*y + y^2
% f(x,y,r)= ---------------------- exp(- ----------------------)
% 2*pi*(1-r^2)^(1/2) 2 - 2r^2
%
% bivnor(a,b,ro)=Int(a..infinity) Int(b..infinity) f(x,y,r) dx dy
%
% Note : Mex compile the file bivnor.c before using it.
%
% Based on Fortran code in Commun. ACM oct 1973 p638 Algo 462
% Translated to C by Ajay Shah (ajayshah@usc.edu)
% Sligtly modified for Matlab compatibility by Moranvil william (moranviw@onid.orst.edu)
%
% 2004 William Moranvil (moranviw@onid.orst.edu)
%
0 commentaires
Réponse acceptée
Walter Roberson
le 25 Jan 2017
You missed this:
% Note : Mex compile the file bivnor.c before using it.
That is, the real code is in the .c file and the file you are looking at is just the help documentation.
3 commentaires
Walter Roberson
le 25 Jan 2017
Once you have your compiler installed and configured, then cd to the directory where bivnor.c is stored, and give the command
mex bivnor.c
Once it succeeds, make sure that directory is on your MATLAB path and you will be able to call bivnor() as if it were a built-in function.
Jan
le 25 Jan 2017
@JazzMusic: Then the command help bivnor displays the help text from the comments in the M-file, while y=bivnor(a,b,rho) calls the compiled MEX file.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur MATLAB Compiler dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!