Error message Mex File Matlab
Show older comments
Has any one had before this error message "Undefined function or method 'name of function' for inputs arguments of type 'double'. I always have this error message when compiling a mex file. I have checked well the path, and it seems the right one. The mex file is "amortiss.c", the error message "Undefined function or method 'arrayquotient' for input arguments of type 'double'. This is my code:
#include "mex.h"
/* The computational function */ void arrayquotient(double input1, double input2, double output1) {
output1=input1/input2;
}
/* The gateway function / void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { / variable declarations here / double input1; / input scalar 1 / double input2; / input scalar 2*/ double output1; /* output scalar 1 */
/* code here / / get the value of the scalar input1 */ input1 = mxGetScalar(prhs[0]);
/* get the value of the scalar input2 */ input2 = mxGetScalar(prhs[1]);
/* create the output scalar1 */ plhs[0] = mxCreateDoubleScalar(input1/input2);
/* get the value of the scalar output1 */ output1 = mxGetScalar(plhs[0]);
/* call the computational routines */ arrayquotient(input1,input2,output1); }
I added the path (command addpath and then savepath) to make sure the mex file "amortiss.c" exists. Then I created a .m file called "arrayquotient.m" in which I just wrote the declaration of my function : function c=arrayquotient(a,b) and that is to make sure that the function arrayquotient exists too.
when compiling an other error message appears: Error in ==> arrayquotient at 1 function c=arrayquotient(a,b) ??? Output argument "c" (and maybe others) not assigned during call to "C:\Users\hp\Documents\MATLAB\codes_Rihab\arrayquotient.m>arrayquotient". So please Help me !! I would appreciate any suggestion from you. Thanks.
Accepted Answer
More Answers (0)
Categories
Find more on Write C Functions Callable from MATLAB (MEX Files) in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!