Backgroud:
I just tried to compile a DLL file from COM Builder, in order to use it in a Visual Basic program.
the m file in Matlab is much simple, as follows:
function w=myBoxcar(n)
w=boxcar(n);
Trouble:
when I call the function in Visual Basic, the following warning came out:
Function...
whether COM Builder can convert every function in Matlab to Visual Basic environmnet?
For example, now I want to convert the function PSD (Power Spectral Density) to VB.