Estadística
0 Preguntas
15 Respuestas
CLASIFICACIÓN
2.266
of 295.467
REPUTACIÓN
28
CONTRIBUCIONES
0 Preguntas
15 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
8
CLASIFICACIÓN
of 20.234
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.912
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
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...
casi 10 años hace | 0
Coder: Does not allocate output structure
Hi Roger, When calling entry-point functions that return emxArray variables (or structures containing emxArray fields), you mus...
alrededor de 10 años hace | 0
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 ...
más de 10 años hace | 1
Matlab Coder Load function fails to locate files in subfolders
You should add 'subfolder' to your path, then use coder.load('myfile.mat')
más de 11 años hace | 0
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
más de 11 años hace | 1
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...
más de 12 años hace | 0
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...
más de 13 años hace | 1
C++ code generation fail
Instead of, say, z = 42; use z = complex(42);
más de 13 años hace | 1
Code generation
In addition to the explicit problem that Kaustubha identified, you have declared you C function to accept real_T arguments, but ...
más de 13 años hace | 0
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...
más de 13 años hace | 1
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...
más de 13 años hace | 1
| aceptada
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...
más de 13 años hace | 0
| aceptada
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...
más de 13 años hace | 0
| aceptada
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...
más de 13 años hace | 1
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 ...
más de 13 años hace | 1