photo

John Elliott

MathWorks

Attivo dal 2011

Followers: 0   Following: 0

Messaggio

Statistica

MATLAB Answers

0 Domande
15 Risposte

RANK
2.329
of 299.962

REPUTAZIONE
28

CONTRIBUTI
0 Domande
15 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
8

RANK
 of 20.851

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 166.743

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
How do you get MATLAB Coder to use -c99 rather than -ansi?
Hi Alexander, I think that there are a number of solutions. First, you can do as you suggest, and modify the generated mexopt...

oltre 10 anni fa | 0

Risposto
Coder: Does not allocate output structure
Hi Roger, When calling entry-point functions that return emxArray variables (or structures containing emxArray fields), you mus...

circa 11 anni fa | 0

Risposto
sizes mismatch error with reduction variable inside parfor inside mex function
As a workaround for this problem, you could try moving the sum operation into a sub-function. Instead of A=A+B; use ...

circa 11 anni fa | 1

Risposto
Matlab Coder Load function fails to locate files in subfolders
You should add 'subfolder' to your path, then use coder.load('myfile.mat')

oltre 12 anni fa | 0

Risposto
How can I create a DLL that can be called from Excel?
Hi Zhanna, Have you tried setting the target language to C++ when you generate the DLL using MATLAB Coder? -John

oltre 12 anni fa | 1

Risposto
Maximum input matrix size for mex function
Hi Ryan, You are probably running up against the Win32 stack size limit. One solution is for you to declare your input matrix...

circa 13 anni fa | 0

Risposto
ambiguous code generation
Numeric suffixes are added to file names to ensure uniqueness. If you have a function that is called once with, say, a double ar...

circa 14 anni fa | 1

Risposto
C++ code generation fail
Instead of, say, z = 42; use z = complex(42);

circa 14 anni fa | 1

Risposto
Code generation
In addition to the explicit problem that Kaustubha identified, you have declared you C function to accept real_T arguments, but ...

oltre 14 anni fa | 0

Risposto
Any trick to generate MEX functions for Linux by using Matlab Coder in Windows?
Code generated for one platform will not necessarily work on other platforms because of differences in register sizes etc. Simil...

oltre 14 anni fa | 1

Risposto
Using Coder's generated C files in Visual Studio ?
Assuming you're just generating the C++ code (and not creating a library), don't forget to add faceImage_initialize.cpp and face...

oltre 14 anni fa | 1

| accettato

Risposto
Alternative to ODE45(), Using Embedded Matlab Coder
MATLAB Coder does not support any solvers. At this time, your only options is to write your own. Embedded Coder does not provide...

oltre 14 anni fa | 0

| accettato

Risposto
couldn't run codegen under matlab
The codegen command uses >> copyfile(<source_file>,<dest_dir>,'f') to copy mexopts.sh, which is typically found in [matla...

oltre 14 anni fa | 0

| accettato

Risposto
How to get working Matlab Coder in Linux
Hi, It appears that you have an incomplete install of the gcc compiler. Based on the build log, the 'gcc' command requires (for...

oltre 14 anni fa | 1

Risposto
Can we generate c code for a matlab file which calls a mex source file
The emlc command cannot compile mex functions. You have two options for integrating your mex function algorithm with the MATLAB ...

oltre 14 anni fa | 1