Réponse apportée
Efficient decimation with Embedded Coder
If you could make all occurrences of dcsDec the same size then you would only get one variable. If that is not possible, ...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
Embedded coder: How to specify array function input parameter as constant (read only) ?
This is an oversight in the design. I've created a bug report. In the mean time, you can work around the problem by using a ...

presque 12 ans il y a | 0

| A accepté

Réponse apportée
Simulink SFunction Interface Error: due to insufficient storage
Have you tried turning off debugging in the MATLAB Function block? That usually has a dramatic effect and allows many more exam...

environ 12 ans il y a | 1

Réponse apportée
why embedded matlab function failed to determine the size of expression
In more recent versions your code should just work. However, in older versions the size of this pattern was not understood: ...

environ 12 ans il y a | 0

Réponse apportée
Coder deleting variable definitions
Hi Adam, Sorry to hear about your frustration. If you have 200 variables you might want to consider a different approach. ...

environ 12 ans il y a | 1

| A accepté

Réponse apportée
coder.ceval for printf from stdio.h
This example worked for me: function simple_printf s1=['%s%-*.*f%s%d' 10 0]; s2=['Time level ' 0]; s3=['[s], Ite...

environ 12 ans il y a | 2

| A accepté

Réponse apportée
Replacing the '@' symbol for MATLAB Coder
Hi Adam, What is the first error message you receive? The error message you mention above just means that there is someth...

environ 12 ans il y a | 1

| A accepté

Réponse apportée
the problem to generate a matrix in C + + code by Matlab coder
There is no way to get MATLAB Coder to generate multi-dimensional arrays in C. This usually is not a practical problem. For ...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
Codegen saying variable is constrained to being non-complex when it's defined as complex
MATLAB Coder automatically renames variables. These two lines are actually constraining two separate variables. yvec1 = ...

environ 12 ans il y a | 2

| A accepté

Réponse apportée
MATLAB Coder licensing limitations
Please refer to the license agreement. I found this post that covers a lot of these issues: <http://www.mathworks.com/ma...

environ 12 ans il y a | 0

Réponse apportée
failed to determine the appropriate size in find
Try this: function [ y ] = a_test() x = zeros(5, 1); k1 = find(x > 1, 1); if (isempty(k1)) k1 = 0; end...

plus de 12 ans il y a | 0

Réponse apportée
codegen: Problems using a structure as an input parmeter
Hi AJ, Have you looked at coder.cstructname? That command can be used to specify the C name to use for a structure type. ...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
code produced wrong fixed sized arrays causing exceptions
Hi Rami, I suspect this is happening because your target has 16-bit integers. The size vector is wrapping as one million can...

plus de 12 ans il y a | 1

| A accepté

Réponse apportée
codegen: Problems using a structure as an input parmeter
Have you tried compiling both of these files with a single call to the codegen command? You can pass multiple entry points, and...

plus de 12 ans il y a | 0

Réponse apportée
emlc generates two different c-files for the same supporting function when building two functions, how do you merge them?
Hi Todd, Just use this idiom emlc -c -T rtw:lib -report -d foo1 fcn1 fcn2 That will product a library with an entry p...

presque 13 ans il y a | 0

| A accepté

Réponse apportée
Specifying function names in generated code using emlc
Hi Todd, You can specify multiple top-level functions to EMLC. Each top-level entry point will have the name you gave it in ...

presque 13 ans il y a | 0

Réponse apportée
emlc issue
Hi Jeremiah, Add the line task = 0; before the line task = input ..... This tells EMLC that you are expecting a ...

presque 13 ans il y a | 2

| A accepté

Réponse apportée
Using emlc to generate C code - function within a function problem
Try using eml.unroll on the for-loop. That will cause the loop to be unrolled in the generated code. This may or may not b...

environ 13 ans il y a | 0

Réponse apportée
Running Previously User-Built MATLAB code from Simulink
Hi Andrew, Could you please provide a bit more detail? I am puzzled by how coder.extrinsic became involved in this? Wha...

environ 13 ans il y a | 0

Réponse apportée
Running Previously User-Built MATLAB code from Simulink
Hi Andrew, Could you please provide a bit more detail? I am puzzled by how coder.extrinsic became involved in this? Wha...

environ 13 ans il y a | 0

Réponse apportée
what she does the eml_assert?
Hi Aydi, These are undocumented MathWorks functions. Can you provide some context? What problem are you trying to solve? ...

plus de 13 ans il y a | 0