1
vote
1answer
48 views
How do I create an N-D matrix of doubles in a MATLAB MEX file?
I need to make a 3-D matrix in a MEX file. In the API reference, there is mention of mxCreateCellArray for N-D cell arrays, mxCreateStructArray for structs, etc. But there is no mx …
0
votes
2answers
40 views
Matlab: avoiding memory allocation in mex
I'm trying to make my mex library avoid all memory allocation what so even.
Until now, the mex got an input, created some matrices using mxCreate...() and returned this output.
But …
0
votes
1answer
62 views
embed python in matlab mex file on os x
I'm trying to embed Python into a MATLAB mex function on OS X. I've seen references that this can be done (eg here) but I can't find any OS X specific information. So far I can suc …
0
votes
1answer
46 views
MATLAB: DLL loaded by mex would not unload?
I have a mex module called p.mexw64 which uses another dll called p.dll
The mex module loads p.dll when it is loaded since it is linking to it's lib file.
Normally, when I want to …
0
votes
2answers
250 views
running old mex file on new matlab releases
I'm trying to run a program originally tested on Matlab 6.5 on a new release (R2009a)
The program uses some mex files, and I get the following error when trying to run it:
??? Inv …
0
votes
1answer
287 views
adding custom SOAP headers in MEX response for operation contract based WCF services
I'm having a problem consuming WCF service requiring custom SOAP headers for methods marked with [OperationContract] attributes. Custom headers cannot be explicitly declared in the …
1
vote
2answers
84 views
Can a WCF service w/ BasicHttpBinding without a MEX Endpoint be exploited by absolute strangers?
From what I understand: If you don't have a MEX endpoint / WSDL, your service is basically non-discoverable. Only people who have knowledge of your data contract should be able to …
1
vote
2answers
173 views
Profiling a mex-function
I have just rewritten a Matlab program in c++ as a mex-function to speed things up, with fantastic results. This optimization decision was a very very good idea, with up to a facto …
-1
votes
1answer
68 views
my wcf services only show directory listing and no wsdl
I have a few wcf services created a number of ways.
all of them only display the directory listing when i browse to them.
(I fixed the part about authentication)
Also I have ver …
2
votes
2answers
298 views
MATLAB MEX interface to a class object with multiple functions
I am using the MEX interface to run C++ code in MATLAB. I would like to add several functions to MATLAB for handling a System object:
sysInit()
sysRefresh()
sysSetAttribute(name, …
1
vote
3answers
425 views
Correctly over-loading a stringbuf to replace cout in a MATLAB mex file
MathWorks currently doesn't allow you to use cout from a mex file when the MATLAB desktop is open because they have redirected stdout. Their current workaround is providing a func …
0
votes
2answers
508 views
Can IIS-hosted WCF service be configured for BOTH Windows Auth and Anonymous?
I've got a small WCF webservice working with the built-in WCF Service Host and with hosting by the Visual Studio 2008 built-in development webserver.
I these hosting enviroments …
1
vote
1answer
313 views
Problem using Mex
My application uses both NetTcpBinding and BasicHttpBinding but each of them will expose a subset of my service class. I have created the service as below.
The problem is that ev …
0
votes
1answer
482 views
Why WCF class Binding doesn’t have member ReaderQuotas?
I'm wondering why the class Binding in WCF doesn't have a property ReaderQuotas, while its subclasses BasicHttpBinding and WSHttpBinding does.
This fact makes coding a little hard …
1
vote
2answers
440 views
mex binding error in WCF
Hello everyone,
I am using VSTS 2008 + C# + .Net 3.0. I am using self-hosted WCF. When executing the following statement, there is the following binding not found error. I have po …
