0
votes
1answer
43 views

How to open a Matlab function

Here in matlab, the source code for latcfilt.m It is from signal processing toolbox. error(nargchk(2,6,nargin,'struct')); if nargin < 6 [F,G,Zf] = latcfiltmex(varargin{:}); else ... I want ...
0
votes
1answer
14 views

SUN benchmark code Invalid .mex file error

I've downloadad the SUN benchmark code from MIT: version 2: http://people.csail.mit.edu/jxiao/SUN/source_code/ Once I download the 15 image dataset and run the function: compute_features.m I ...
-1
votes
0answers
33 views

Segmentation violation on “change folder” in Matlab [closed]

When I am running a certain .m-file not currently on the matlab path, the dialog pops up where you can choose to 'change folder' or 'add to path'. When clicking 'change folder', matlab consistently ...
0
votes
3answers
50 views

which configuration option is used by Mex to compile using matlab?

say, if choose mexopts.sh as the configuration files for mex, then how does mex decide which option listed in the mexopts.sh is used for compiling? for example, using 32bit matlab on 64bit mac os ...
0
votes
1answer
42 views

mex compiler could not find include path in .h files

Hi I'm using MEX in Matlab. The c code uses boost and a lot of headers are included. And at first my problem is like this >>mex readTrackletsMex.cpp readTrackletsMex.cpp ...
0
votes
2answers
73 views

Error building MEX-files (MATLAB 2012a) on Kubuntu '/usr/bin/ld: cannot find -lstdc++'

I'm trying to build a C program on Matlab 2012a, through the command: mex mat_trans2.c And I'm getting this error: /usr/bin/ld: cannot find -lstdc++ collect2: ld returned 1 exit status ...
2
votes
1answer
59 views

How can I get rid of stdafx.h error when compiling C++ with mex in matlab?

I am trying to compile a C++ code with mex but am unable to compile it successfully . Reading some related blogs, I installed both Microsoft Visual C++ 2010 Express and Windows Software Development ...
1
vote
0answers
42 views

How to ignore `mexopts.sh` when compiling MEX files for Matlab?

The -f command-line argument to mex allows to specify the location of the mexopts.sh that we wish to use. But is there a way to tell Matlab to ignore mexopts.sh? In order to compile a specific MEX ...
0
votes
2answers
40 views

Matlab Mex file compile

I'm trying to compile a mex file to use socket connection within matlab. The problem is that it is always saying that I don't have sdk or compiler installed. But I have installed visual studio 2010 ...
0
votes
1answer
65 views

Errors trying to compile multiple c++ files with mex for MATLAB

I am using MATLAB under Ubuntu and want to compile a set of 2 c++ files with a header file, using mex. I show a basic example and the errors I am getting. This code produces the text "hello" from the ...
2
votes
2answers
83 views

How to loop through matrix elements in mex c++ function for MATLAB?

I am trying to index write an external c++ function for MATLAB using mex to manipulate matrices, and am not able to use multidimensional indexing. There are examples provided here, but I have not ...
0
votes
1answer
38 views

Trying to find and install libstdc++.so.5 to run C++ with mex for MATLAB

I am using the BGL libraries for MATLAB found here on fileexchange. I get this error when using a function from this library under Ubuntu 10.04 LTS (this error did not occur under Windows, where it ...
0
votes
2answers
69 views

MATLAB .m file to mex file conversion

I have a MATLAB program which I need to call from php. I converted it into an exe with the help of deploytool but it is too slow. So I want to convert it into a mex file or a C file then to a exe so ...
0
votes
0answers
95 views

mex call matlab function within openmp parallel region

I'm writing a mex function, and I want to use openmp to accelerate the for loop. Within the loops, I call several custom matlab functions. The mex function compiles fine, but calling it makes matlab ...
1
vote
0answers
129 views

Improving Matlab + CUSP MEX solution for A*x=B on CUDA GPU

Matlab still can't compute sparse matrices on CUDA GPU. There are no such toolboxes (Jacket is discontinued) for that as well. That's why I am using CUSP integrated to Matlab through MEX file. ...
0
votes
0answers
78 views

Create a MATLAB MEX file for a C program

I'm an experienced MATLAB user but totally new to C and MEX files. I have a complex program written in C that I need to call from within MATLAB. The program consists of a few dozen files in a ...
0
votes
1answer
267 views

How to direct MATLAB's mex setup to the Microsoft Windows SDK for C++ compiling? (error in setting location)

I am on Windows Vista, and want to use MATLAB to compile C++ functions. I had only the lcc compiler on the system, as can be seen when running mex -setup : mex -setup Welcome to mex -setup. This ...
0
votes
1answer
44 views

How to return sparse matrix from CUSP::csr_matrix in MEX to Matlab?

I am developing my MEX file for sparse matrix computing with CUDA. I am using CUSP library. I don't know how to return cusp::csr_matrix back to Matlab. For example, I have ...
0
votes
1answer
40 views

Link error when compile mex files

I am running mex under MATLAB R2011a in OS X 10.8. The compiling process is almost OK. But I come into some link errors. The command line I used in MATLAB command window is: mex -I/usr/include/ ...
0
votes
2answers
54 views

How to trick this Matlab MEX to read a function again?

I'm using a closed-source MEX function, so I don't know this works behind the scenes. I supply it a function name as a string, and the MEX calls this function repeatedly with a long delay (seconds to ...
1
vote
0answers
60 views

Statically build external library with MEX files

I downloaded source code of OpenCV and built statically (no DLL option) by Visual Studio (in release mode) so that I can create standalone executables. It works perfectly fine with Visual Studio in ...
0
votes
1answer
79 views

Mex Files Matlab | How to properly call another Mex file from a Mex file?

..............................
0
votes
0answers
103 views

Matlab mex linker error with qt 5

Hello I have some matlab shared librarys that uses Qt modules. With qt 4 I had no problems but now with qt 5 (Qt 5.0.1 for Windows 32-bit (VS 2010, 481 MB) ) I get the following errors: ...
1
vote
1answer
69 views

Calling Matlab from C++ with Refreshed Inputs

I am working on a Qt Project that requires me to to work with Matlab c++ shared library. I am basically working with Images that I acquire, and I need to do further processing on them later. It is ...
0
votes
1answer
77 views

matlab error or libsvm error with related to mex files

I am using libsvm with Matlab R2011. My problem is that it has suddenly started to give me error about mex files and it won't run again.Interesting thing is the same program was running some time back ...
1
vote
1answer
64 views

How can i destroy memory in my mex files when variables are destroyed in matlab?

I am handling some memory in my mex files and passing a handle back to matlab. Are there a way to deal with the event of a user clearing or deleting that specific handle stored in a variable in ...
0
votes
0answers
79 views

Link jpeg toolbox for Matlab with libjpeg6b

This question is related to another question: building MATLAB jpeg toolbox Also I tried to build the jpeg toolbox. I followed the guide the user Noha gives in his answer. I made it to the last step ...
7
votes
3answers
320 views

Error: Invalid MEX file, the specified module could not be found

I have compiled Mex file successfully on my laptop. But when I am running it, it says Invalid mex file 'c:\newfolder\filename.mexw32' The specified module could not be found. System specification: ...
3
votes
1answer
80 views

Memory leak in Mex

I am doing below in a loop with dims = [1024 768 256]. I want to read a set of block loaded by block_iter (1 to 16) into a RAM of hardware. The memory call seems to display the memory leaking. Am I ...
23
votes
2answers
792 views

FFTW vs Matlab FFT

I posted this on matlab central but didn't get any responses so I figured I'd repost here. I recently wrote a simple routine in Matlab that uses an FFT in a for-loop; the FFT dominates the ...
1
vote
2answers
130 views

Linking errors from MATLAB Mex library

I am having troubling compiling a MATLAB Mex library - specifically, the 'Correlation Clustering Optimization' code from this website. I am trying to compile on an OSX machine, and am using the ...
0
votes
1answer
50 views

undefined function interp2fast_double

I got another problem again in Matlab with ASM code, I need to call function interp2fast_double.c from matlab, but when I run it, it gave me error like this : Undefined function 'interp2fast_double' ...
1
vote
1answer
113 views

Access Matlab Struct from mex

I have a Structure from Matlab passed to mex. It is passed correctly, I verified it with mxGetClassName(mxArray_pointer_carrying_struct) which returns struct as the class type. The struct has 15 ...
1
vote
3answers
151 views

Calling methods of C++ Class in Mex from Matlab

I have a DLP kit which I need to control via Matlab using C++ API. Say, I have functions/methods using C/C++ for {load_data, load_settings,display_data} in a mex file named dlp_controller.cpp/.c. I ...
0
votes
1answer
94 views

MATLAB crashes when I use malloc instead of mxMalloc

I have written following code in MATLAB: #include <string.h> #include <stdlib.h> #include "mex.h" #include "matrix.h" void mexFunction(int nlhs, mxArray *plhs[], int ...
2
votes
1answer
71 views

mex doesn't recognize inline

I'm trying to compile a matlab wrapper for libdc1394 which is a library for firewire cameras. I get a strange error involving some inline functions in a header file. I'm working on ubuntu 12.04 with ...
1
vote
1answer
40 views

mex compile error: expected expression error at Matlab datatype and function

I am starting out mex on linux, so I begin this little code below and try compile: #include "mex.h" void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { mxArray ...
2
votes
1answer
88 views

mex code crash on new matlab version / architecture

I have a routine that computes the shift-invariant discrete wavelet transform, as specified in the Rice Wavelet Toolbox, in the frequency domain. The code is in MEX (c-syntax) and uses some extra ...
0
votes
0answers
21 views

How could I change the MEX code of LibSVM

I try to increase the number of items inside the model structure resulted by the classifier. I found the source code svm_model_matlab.c and a constant NUM_OF_RETURN_FIELD that defines the number of ...
2
votes
1answer
94 views

Mex class memory leak - Is a destructor needed with STL maps?

I am searching for a memory leak in some mex code (IT support where I'm working haven't installed the useful debug flags, making Valgrind next to useless...). One of the potential sources I've found ...
1
vote
1answer
254 views

Symbolic link to compile the code using 32-bit libraries in 64-bit Ubuntu 12.10

I am trying to mex C code using 32-bit 2012a Matlab on 64-bit Ubuntu 12.10 I've downloaded all possible libraries (gcc 4.7, build-essential,libs-32 etc.) however I am getting the following error ...
1
vote
1answer
337 views

mex files in 32-bit matlab on 64-bit Ubuntu

I am trying to compile object detection program from http://people.cs.uchicago.edu/~rbg/latent/, without any luck, however. I installed 64-bit Ubuntu 12.10, 32-bit MATLAB 2012a. I also have gcc ...
1
vote
1answer
119 views

Accessing MATLAB's unicode strings from C

How can I access the underlying unicode data of MATLAB strings through the MATLAB Engine or MEX C interfaces? Here's an example. Let's put unicode characters in a UTF-8 encoded file test.txt, then ...
0
votes
1answer
164 views

Matlab mex file compilation error — “SSE2 instruction set not enabled”

When compiling a toolbox of mex files within Matlab, I receive the following error: In file included from /home/josh/Desktop/Project/code/toolbox/channels/private/sse.hpp:9:0, from ...
0
votes
1answer
193 views

Error compiling Matlab MEX files (Piotr's Matlab Toolbox)

I am trying to install Piotr's Matlab Toolbox (http://vision.ucsd.edu/~pdollar/toolbox/doc/) but the compile script for the mex files complains: >> toolboxCompile ...
1
vote
1answer
76 views

MATLAB C matrix interface: does mxDestroyArray recursively destroy elements of cells and structs?

The question is in the title: does mxDestroyArray() recursively destroy elements of cells and structs? Is is about MATLAB's C matrix library interface. To explain in more detail through a concrete ...
0
votes
2answers
75 views

Segmentation violation error in matlab on Ubuntu? [closed]

I am running a code with a large database on ubuntu using matlab and C++ through a mex function, when I run this code on my machine it runs fine with no errors. But when I run it on a remote unix ...
0
votes
3answers
128 views

Call matlab mex file in C++

I have a Matlab mex file with known interface, this mex file is provided by other guys so I cannot access the code. Is there any efficient way to call the mex function in C++? Thanks!
0
votes
0answers
48 views

Profile MEX - C file

I'm new to C/C++ and MEX functions. I created the following function and I would like to optimise it (performance-wise): #include "math.h" double GW(double i1, double i2, double h0, double C1, ...
1
vote
1answer
40 views

Unable to use mex on R2010a

I'm using Matlab R2010a. I need to create a custom block embedded with my code for which i require mex. I have Visual Studio Express 2010 installed on my system. I followed the instructions and ...

1 2 3 4 5 7