Pregunta


fast initialization of cell array of strings mex
I'm looking to initialize a cell array of strings in mex as quickly as possible from a long array of characters with an addition...

alrededor de 9 años hace | 1 respuesta | 1

1

respuesta

Respondida
How to find the Process ID (PID) in matlab
A .NET solution: name = 'excel'; %for example p = System.Diagnostics.Process.GetProcessesByName(name); if p.Length ==...

más de 9 años hace | 3

Pregunta


do timer callbacks all execute in the same thread
I recently tried to start a timer, have the single-shot callback permanently execute, and then launch another timer further on d...

más de 9 años hace | 1 respuesta | 1

1

respuesta

Pregunta


Getting data from asychronous mex function.
I am calling a windows function SetWindowsHookEx() which takes in a pointer to a function that gets called asynchronously. I'm c...

más de 9 años hace | 2 respuestas | 1

2

respuestas

Respondida
Set and get structure field with invalid name
I knew I had seen this somewhere before. Amro posted this link: <http://pastebin.com/j69kQEur> in the comments of this pos...

más de 9 años hace | 0

| aceptada

Pregunta


Set and get structure field with invalid name
I'd like to get and set a structure with potentially invalid field names. Before digging into the mex myself I was wondering if ...

más de 9 años hace | 3 respuestas | 0

3

respuestas

Pregunta


profiling mex using gprof in windows
I'm using TDM-GCC to compile a C mex program in Windows. I'd like to profile it using gprof or really any program that will prof...

más de 9 años hace | 1 respuesta | 1

1

respuesta

Pregunta


Profiling mex in Windows
What are my options if I'd like to profile a mex file in Windows. I'm open to trying a specific compiler/workflow. Thanks, J...

casi 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


retrieve variables from workspace that is being debugged
I'm writing some code that is meant to provide information about code I am writing, including when not running (file or base wor...

casi 10 años hace | 0 respuestas | 1

0

respuestas

Pregunta


Executing code that's dynamically written to a file
Hi all, My goal is to write a function that executes whatever is copied to the clipboard. Importantly however, I'd like to pl...

más de 10 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Is it possible to tell when Matlab is busy executing?
Is it possible to tell when Matlab is busy executing? I'd like to run some code on a timer but I'd rather not execute the main p...

más de 10 años hace | 3 respuestas | 1

3

respuestas

Pregunta


Can you pass a string to parse into mlintmex rather than a filename?
Hi all, Is it possible to pass a raw string into mlintmex rather than a filepath? Thanks, Jim

más de 10 años hace | 1 respuesta | 0

1

respuesta

Respondida
Matlab and Google Sheet Compatibility
To work with Google Sheets, you would need to use their API. <https://developers.google.com/google-apps/spreadsheets> This...

casi 11 años hace | 1

| aceptada

Respondida
if condition finding same numbers in consecutive rows
sum the differences, but make sure to take the absolute value so that you don't get positives and negatives that cancel out ...

casi 11 años hace | 0

Pregunta


In place array flipping - mex in place
I'm trying to flip a large vector and I noticed that Matlab is not doing this in place. More on how I know this in a bit. Is it ...

casi 11 años hace | 1 respuesta | 0

1

respuesta

Respondida
Where is a list of eventtypes for listeners?
For hg1, events can be found tin the schema.class object h = uicontrol('style','slider') class_info = classhandle(ha...

casi 11 años hace | 2

Respondida
list of event listeners for handle graphics
See http://www.mathworks.com/matlabcentral/answers/56325-where-is-a-list-of-eventtypes-for-listeners for essentially the same qu...

casi 11 años hace | 0

Pregunta


how does flushing the system queue work with drawnow
I'm running a callback that takes time to execute. As it is running, user inputs may be generating more callbacks (to the same f...

alrededor de 11 años hace | 0 respuestas | 2

0

respuestas

Pregunta


how to emulate "hold on" in 2014b
*Edit:* *This is apparently a duplicate of:* <http://www.mathworks.com/matlabcentral/answers/165787-how-can-i-get-the-pre-20...

alrededor de 11 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Fastest way to compute min and max values over an array subset
I'm trying to compute the minimum and maximum values over subsets of an array. My current approach is fairly simple but is notic...

alrededor de 11 años hace | 5 respuestas | 2

5

respuestas

Pregunta


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...

alrededor de 11 años hace | 0 respuestas | 1

0

respuestas

Respondida
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-...

alrededor de 11 años hace | 13

Pregunta


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

alrededor de 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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

más de 11 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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...

más de 11 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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...

más de 11 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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'...

más de 11 años hace | 1 respuesta | 2

1

respuesta

Respondida
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...

más de 11 años hace | 2

| aceptada

Respondida
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...

más de 11 años hace | 0

Respondida
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...

más de 11 años hace | 0

| aceptada

Cargar más