Question


Implementing a weak reference in Matlab
When someone makes a request for an object with certain parameters, I'd like to return an existing object (of handle type) if th...

plus de 10 ans il y a | 1 réponse | 1

0

réponse

Réponse apportée
Convert python numpy array to double
Here's another approach. This is alluded to by http://www.mathworks.com/help/matlab/matlab_external/handling-data-returned-from-...

plus de 10 ans il y a | 13

Question


Objects hidden in figures
I store an object instance in a figure after loading the object. setappdata(obj.fig_handle,'obj',obj); I accidentally...

plus de 10 ans il y a | 1 réponse | 0

0

réponse

Question


timer not always running
I have an event listener callback. In that callback I run the following code: disp('I ran') t = obj.time...

plus de 10 ans il y a | 1 réponse | 0

0

réponse

Question


unexpected xlim behavior - where is the documentation/code for how xlim gets updated
Is the way that the xlim property of an axes changes documented? I have some code that waits a bit - via a timer - after a serie...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


list of event listeners for handle graphics
Where would I find a list of things that can be listened to with regard to handle graphics. In 2014b I know I can use the metacl...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


How do I setup the Python Interpreter for Matlab 2014b for Windows OS
In Matlab 2014b there is support for calling Python directly from Matlab. See help CallPythonExample for an example But I'...

plus de 10 ans il y a | 1 réponse | 2

1

réponse

Réponse apportée
How do I setup the Python Interpreter for Matlab 2014b for Windows OS
Use: pyversion(executable_path) to specify the path to the Python executable. In Python you can run: import sy...

plus de 10 ans il y a | 2

| A accepté

Réponse apportée
Convert python numpy array to double
Here's a very ugly solution. temp = cellfun(@cell,cell(x.tolist),'un',0); data = cell2mat(vertcat(temp {:})); A sligh...

plus de 10 ans il y a | 0

Réponse apportée
Calling 64 bit third party dll from mex doesn't work for one function
The problem ended up having to do with the allocation address of the memory for the data being read into memory. When the alloca...

plus de 10 ans il y a | 0

| A accepté

Question


Calling 64 bit third party dll from mex doesn't work for one function
Hi all, I wrote a mex function to wrap a third party library that is provided as a dll with an "import library" .lib file p...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
Edit mex configuration programmatically
So the current solution I have in mind is roughly the following: # back up the default file # replace the default with my fi...

plus de 10 ans il y a | 0

Question


Edit mex configuration programmatically
Hi all, I'd like to be able to edit the mex configuration programatically. There are some recent changes to the configuration...

plus de 10 ans il y a | 2 réponses | 2

2

réponses

Réponse apportée
Why do I receive a "specified module could not be found" error while running a MEX-file in MATLAB?
In my case I needed to install a Visual Studio redistributable Package that matched the version used when compiling the librarie...

plus de 10 ans il y a | 3

Question


Getting help for a hidden class
I like to make classes hidden when I don't want them to be visible to tab complete. I was surprised to find that with Matlab 201...

presque 11 ans il y a | 1 réponse | 0

0

réponse

Question


clearing all variables crashes matlab, clearing dll memory?
I am working with a 3rd party dll via a mex interface. The dll opens files and returns a handle to the open file. The file handl...

presque 11 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
mex crashes when adding input AND calling function
The problem goes away when I predefine nRecords and change it from a pointer to a value. What's not clear to me is why the cr...

presque 11 ans il y a | 0

| A accepté

Question


mex crashes when adding input AND calling function
My mex file crashes only when I provide an input AND call a function. I'm having a hard time figuring out what is actually going...

presque 11 ans il y a | 1 réponse | 0

1

réponse

Question


wchar_t from char in mex
I am trying to call a library function which uses wchar_t* path. How would I make this assignment? wchar_t* path = "Some...

presque 11 ans il y a | 1 réponse | 0

0

réponse

Question


enum returned from calllib
I am using calllib to call a function which returns an enumerated value. So far I have only seen two values, one of which was a ...

presque 11 ans il y a | 1 réponse | 0

0

réponse

Question


Problems with struct pointer pointer in calllib
I'm working with a header that has the following declaration: struct ADI_FileHandle__ { int unused; }; typedef struct ADI_F...

presque 11 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
array pointers in matlab
Just in case anyone comes across this, I think you want the following: For: void __stdcall Test(int16_t outputArray[], int32...

environ 11 ans il y a | 0

Réponse apportée
Unexpected Matlab edge case behavior
The dimensionality of a matrix is not always well specified. Using normal arrays, it is impossible to tell if a vector is really...

plus de 11 ans il y a | 1

Réponse apportée
Unexpected Matlab edge case behavior
This answer originally came from the following link, although I didn't really understand it until I actually ran into an error i...

plus de 11 ans il y a | 3

| A accepté

Question


Unexpected Matlab edge case behavior
I recently stumbled upon an edge case in Matlab where indexing doesn't always work as expected (See answers below). What edges c...

plus de 11 ans il y a | 6 réponses | 2

6

réponses

Réponse apportée
how to access cells of n-dimensional array without colon operator?
See: <http://www.mathworks.com/matlabcentral/answers/58825-how-can-i-dynamically-assign-access-elements-in-a-matrix-with-arbitr...

plus de 11 ans il y a | 1

Réponse apportée
Working with unicode paths
As others have alluded to, the problem seems to be with Matlab touching the character data. I still don't have a solution for ch...

plus de 11 ans il y a | 1

| A accepté

Question


Directory listing of extended ascii in windows
*EDIT:* This question raised some interesting issues but I don't consider it to be answered. Based on feedback from this questi...

plus de 11 ans il y a | 2 réponses | 3

2

réponses

Question


Working with unicode paths
The following is a followup to: <http://www.mathworks.com/matlabcentral/answers/85508-directory-listing-of-extended-ascii-in-...

plus de 11 ans il y a | 3 réponses | 1

3

réponses

Réponse apportée
DEcoding of run length snd huffman for image compression
I am not aware of any that you would want to actually use. When working on a similar project involving JPEG I was unable to find...

plus de 11 ans il y a | 0

| A accepté

Charger plus