A répondu
Why is it sometimes impossible to save the pathdef in 2014a?
A colleague of mine was having this issue. I was going to suggest to them that they edit their startup.m file to add all the pat...

plus de 6 ans il y a | 3

A répondu
Get a subset of a structure array in mex
This is the code I ended up using. At the end of the day I essentially wanted to have an object "template" (i.e. field names def...

plus de 6 ans il y a | 0

| A accepté

Question


Get a subset of a structure array in mex
Is it possible to get a subset of a structure array in mex? In other words, the mex equivalent of the following in Matlab: ...

plus de 6 ans il y a | 3 réponses | 0

3

réponses

Question


mxCreateStructArray and mxCreateStructMatrix field name memory management
I've been trying to find documentation on how the field names are managed with the structure creating functions in mex. Are the ...

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

1

réponse

Question


mexPrintf to standard error
Is it possible to direct the output of mexPrintf to standard error? I'd like something like in Matlab where you can do fprintf(2...

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

1

réponse

A répondu
Fill out zeros/NaN in array with next value
I'm not entirely sure how you are generating the output, but you should be able to do something like: I = find(isnan(data))...

plus de 6 ans il y a | 0

A répondu
cputime not working as expected
cputime measures the # of clock cycles (summed across all threads) that the Matlab process has used since Matlab started. Units ...

plus de 6 ans il y a | 1

| A accepté

Question


cputime not working as expected
It seems like cputime does not work as advertised on Mac OSX 10.11.6 and Matlab 2016b or Windows 7 Matlab 2016a. cputime should ...

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

2

réponses

A répondu
about using 'visual studio 2015 community' for compiler when we use 'mex' of command
This page links to supported compilers for previous releases (far right column): <https://www.mathworks.com/support/sysreq/prev...

plus de 6 ans il y a | 0

A répondu
Using Visual Studio 2015 C++ as C/C++ compiler
The redistributable is not for compiling code. Per Microsoft: "The Visual C++ Redistributable Packages install run-time componen...

plus de 6 ans il y a | 1

| A accepté

Question


mxSetData to subset of mxArray
Is it possible, perhaps with a certain set of restrictions on what the user can do, to assign data to an mxArray which is a subs...

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

1

réponse

Question


mxAddField/mxGetField with unicode name
I am trying to write code that allows for arbitrary field names in Matlab structures. I thought I had a decent solution, based o...

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

1

réponse

Question


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

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

1

réponse

A répondu
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 ==...

plus de 6 ans il y a | 3

Question


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

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

1

réponse

Question


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

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

2

réponses

A répondu
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...

presque 7 ans il y a | 0

| A accepté

Question


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

presque 7 ans il y a | 3 réponses | 0

3

réponses

Question


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

environ 7 ans il y a | 1 réponse | 1

1

réponse

Question


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

environ 7 ans il y a | 1 réponse | 0

1

réponse

Question


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

environ 7 ans il y a | 1 réponse | 1

0

réponse

Question


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

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

1

réponse

Question


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

presque 8 ans il y a | 2 réponses | 1

2

réponses

Question


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

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

1

réponse

A répondu
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...

environ 8 ans il y a | 1

| A accepté

A répondu
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 ...

environ 8 ans il y a | 0

Question


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

environ 8 ans il y a | 1 réponse | 0

1

réponse

A répondu
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...

plus de 8 ans il y a | 2

A répondu
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...

plus de 8 ans il y a | 0

Question


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

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

0

réponse

Charger plus