Community Profile

photo

Denis Gurchenkov

Last seen: 13일 전 2011년부터 활동

통계

All
  • Knowledgeable Level 4
  • 3 Month Streak
  • Revival Level 2
  • First Answer

배지 보기

Content Feed

보기 기준

답변 있음
Access a different input-argument, when calling a fucntion
This error message suggests you to open the Symbols pane in the MATLAB Function block and enter the upper bound size for this ou...

5개월 전 | 0

답변 있음
When I use Matlab coder,This problem occurs,“Undefined function or variable 'outputLimits'.”
Can you check if you have Image Processing Toolbox installed? outputLimits belongs to that toolbox, so if you don't have it, the...

7개월 전 | 0

답변 있음
How to properly define a complex externally defined input argument to entry point function in code generation?
Hi AB, I don't see any way to accomplish this directly. MATLAB Coder just can't comprehend a notion of an open-ended struct, no...

8개월 전 | 0

| 수락됨

답변 있음
Coder codegen on multiple cores
Unfortunately, no, MATLAB Coder / codegen can't run in parallel. It is a good idea and the development team is aware of it, but ...

8개월 전 | 0

답변 있음
Is there a way to turn off function specialization for a function or all functions
Hi Nathan, no, unfortunately there is no blanket way to do so. Specialization happens in 3 cases: Calls to a function with in...

10개월 전 | 0

| 수락됨

답변 있음
How to set output type manually in matlab coder
Hi Alireza, The "emxArray_real_T" type indicates that the code generator does not know what is the maximum number of elements i...

대략 1년 전 | 0

답변 있음
Convert a sub function within an M file
Hi Phil, A subfuncton cannot be an entry point for MATLAB Coder. You'd need to move that subfunction into a separate .m file, t...

대략 1년 전 | 1

| 수락됨

답변 있음
How can matlab coder be configured to generate only one c file?
Yes you can tell MATLAB Coder to generate a single file. Here is the doc page.

대략 1년 전 | 0

답변 있음
Does Matlab coder work with the Global Optimization Toolbox?
Hi Dave, I passed your feedback to the development team, so they prioritize supporting this function for code generation. If ...

1년 초과 전 | 0

답변 있음
libmwtbbhist.dll not found when using dynamic library in visual studio project
On the last page in the MATLAB Coder UI, there is a "package" button in the top right part of the screen. If you click it, it wo...

1년 초과 전 | 1

| 수락됨

답변 있음
Matlab Coder refuses to support houghlines.m
First, this is a bug. The error is not expected. I referred this to the MathWorks software development team to be fixed in futur...

거의 2년 전 | 0

답변 있음
Function 'webread' not supported for code generation Matlab - ThingSpeak - Raspberry Pi
Yes, you are right, webread() does not support code generation. As a workaround, you can use coder.ceval functon to call a hand-...

거의 2년 전 | 2

답변 있음
Convert .m file to standalone .exe file without Application/MATLAB compiler
There are two solutions: MATLAB Compiler and MATLAB Coder. See this link for details.

거의 2년 전 | 0

답변 있음
How can I print variables when deploying code on a raspberry ?
Hi Guilhem, I think fprintf is the only soltuion that would work for you. For arrays, perhaps you can just write your own myprin...

거의 2년 전 | 2

| 수락됨

답변 있음
Error generating code to implement RegressionGP Model using MATLAB Function in Simulink (The input to coder.const cannot be reduced to a constant: Unsupported value.)
Hi Michelle, there is nothing wrong with your code, the issue looks like a bug in the product. Can you please contact MathWorks ...

거의 3년 전 | 0

| 수락됨

답변 있음
Code generation with ordered data structures of objects e.g. lists or vectors of objects
As of R2020a, MATLAB Coder supports cell array of value objects, which get converted to arrays of struct in C and arrays of clas...

거의 3년 전 | 1

답변 있음
Using MATLAB Class with coder.ceval calls in App designer
Hi Noah, you are correct. Some background: MATLAB Compiler (standalon application) is NOT a compiler. It is a deployment too...

대략 3년 전 | 1

| 수락됨

답변 있음
Can I change the name of a function during codegen?
Unfortunately, no, there is no mechanism to rename the function in the generated C code. I've added a request for the developmen...

대략 3년 전 | 0

| 수락됨

답변 있음
Matlab inbuilt functions to cpp code
Here is the list of functions and classes that can be converted to C/C++ using MATLAB Coder: https://www.mathworks.com/help/code...

대략 3년 전 | 2

답변 있음
Is it possible to access struct fields dynamically in generated code?
The the specific question you are asking ("is possible to access struct fields dynamically in generated code"), the answer is "n...

3년 초과 전 | 0

| 수락됨

답변 있음
License checkout failed for borrowed license/products
Can you please contact MathWorks technical support and tell them you have a problem related to installation and licensing. This ...

3년 초과 전 | 0

답변 있음
Direct path in generated code
Hi Arthur, the bottom line: These paths are there because you configured MATLAB Coder to produce C code with runtime error chec...

3년 초과 전 | 1

| 수락됨

답변 있음
Matlab code to C++ classes in 2018 VS 2019
Hi Bogdan, The CppInterfaceStyle config parameter has been added in R2019b. In prior releases, it is not possible to genera...

3년 초과 전 | 0

| 수락됨

답변 있음
Embedded Coder generated .zip file problem
These header files contain various type definitions, macros, constants and functions that are used by the generated C/C++ code. ...

3년 초과 전 | 0

답변 있음
What is the best way to work with variable size class properties?
Hi John, MATLAB Coder does support variable-sized arrays inside classes. I think you got confused by the fact that coder.vars...

3년 초과 전 | 2

| 수락됨

답변 있음
How to Imply the Input Array Dimensions to MATLAB Coder
The closest you can do, I think, is this: codegen ProcessImage -args {coder.typeof(uint(0), [Inf Inf]) } -config:lib This ...

3년 초과 전 | 0

답변 있음
Problem with persistent variables within embedded function
The way I understand your quesiton is this: each of those three calls to SecondOrderLowpassFilterTustin should have its own pers...

3년 초과 전 | 1

| 수락됨

답변 있음
In R2018b MATLAB Coder - autocode array of strings in a class properties (SetAccess = private)
Hi Katherine, if this class is intended to be used by the MATLAB coder that is converted to C code (via MATLAB Coder), then ther...

거의 4년 전 | 0

답변 있음
Reading constants and variables from external header files in Matlab Coder
If you have an Embedded Coder license, you can use coder.storageclass to bind an extern C variable to a variable in MATLAB funct...

대략 4년 전 | 2

| 수락됨

답변 있음
MATLAB Coder: Toolbox Function
MATLAB Coder App does not support generating code for an entry-point function that is nested inside a package. I can think of th...

대략 4년 전 | 1

| 수락됨

더 보기