Arnab De
MathWorks
2012 年からアクティブ
Followers: 0 Following: 0
Professional Interests: compiler, program analysis, programming languages, verification
統計
MATLAB Answers
0 質問
15 回答
ランク
of 153,912
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
ERROR: Wavelet + MATLAB Coder
There must be other assignments to the variable 'c' where the assigned value is single. If you want 'c' to be single, change the...
ERROR: Wavelet + MATLAB Coder
There must be other assignments to the variable 'c' where the assigned value is single. If you want 'c' to be single, change the...
6年以上 前 | 0
回答済み
Coder Cannot define entrypoint for classdef
The entry point to MATLAB Coder must be a function. MATLAB classes are not supported as entry points. You can define a function ...
Coder Cannot define entrypoint for classdef
The entry point to MATLAB Coder must be a function. MATLAB classes are not supported as entry points. You can define a function ...
約9年 前 | 0
| 採用済み
回答済み
Doubt regarding emxArray_real_T generated from Matlab Coder.
See the doc for <http://www.mathworks.com/help/coder/ug/c-code-interface-for-unbounded-arrays-and-structure-fields.html?searchHi...
Doubt regarding emxArray_real_T generated from Matlab Coder.
See the doc for <http://www.mathworks.com/help/coder/ug/c-code-interface-for-unbounded-arrays-and-structure-fields.html?searchHi...
9年以上 前 | 0
回答済み
Can not coder conversion
See <http://www.mathworks.com/help/simulink/ug/rules-for-using-variable-length-argument-lists-for-code-generation.html# this art...
Can not coder conversion
See <http://www.mathworks.com/help/simulink/ug/rules-for-using-variable-length-argument-lists-for-code-generation.html# this art...
9年以上 前 | 0
回答済み
' CODER.VARSIZE is not applicable to 'mxArray' problem while trying to use MATLAB Coder
The value of the variable |pre_img| comes from the output of some extrinsic function. Such variable are of 'mxArray' type. If yo...
' CODER.VARSIZE is not applicable to 'mxArray' problem while trying to use MATLAB Coder
The value of the variable |pre_img| comes from the output of some extrinsic function. Such variable are of 'mxArray' type. If yo...
9年以上 前 | 1
回答済み
How to compile a Matlab script using Matlab coder which calls a Simulink model
In order to call an external C function from your MATLAB code that you want to use for code generation, you need to use <http://...
How to compile a Matlab script using Matlab coder which calls a Simulink model
In order to call an external C function from your MATLAB code that you want to use for code generation, you need to use <http://...
約10年 前 | 0
回答済み
Coder: issue replacing variables with constant values
MATLAB Coder only respects the interface of the entry point function. Although you did not specify your codegen command, I guess...
Coder: issue replacing variables with constant values
MATLAB Coder only respects the interface of the entry point function. Although you did not specify your codegen command, I guess...
11年以上 前 | 1
回答済み
Coder: issue replacing variables with constant values
If an expression (such as myconfig.A) has a constant value in all executions of the program, MATLAB Coder tries to use that cons...
Coder: issue replacing variables with constant values
If an expression (such as myconfig.A) has a constant value in all executions of the program, MATLAB Coder tries to use that cons...
11年以上 前 | 1
回答済み
Matlab Coder : Size Mismatch Issue
As C is statically typed, MATLAB Coder needs to compute a static type for all variables in the program, which also involves comp...
Matlab Coder : Size Mismatch Issue
As C is statically typed, MATLAB Coder needs to compute a static type for all variables in the program, which also involves comp...
11年以上 前 | 0
回答済み
Matlab Coder Segmentation fault
Your C code, in its present form, will not compile. I suspect that the executable you have is a stale result of compilation of a...
Matlab Coder Segmentation fault
Your C code, in its present form, will not compile. I suspect that the executable you have is a stale result of compilation of a...
11年以上 前 | 1
| 採用済み
回答済み
How can I get rid of type-punned pointer warnings in my MATLAB coder generated C code?
It appears that the problem is caused by the strict aliasing optimization. Please try compiling the generated C code with |-fno-...
How can I get rid of type-punned pointer warnings in my MATLAB coder generated C code?
It appears that the problem is caused by the strict aliasing optimization. Please try compiling the generated C code with |-fno-...
11年以上 前 | 2
回答済み
Using coder.extrinsic with "spectrum.periodogram" in simulink?
From your code, it appears that spectrum is not a function, but a class. |coder.extrinsic| declaration does not work with clas...
Using coder.extrinsic with "spectrum.periodogram" in simulink?
From your code, it appears that spectrum is not a function, but a class. |coder.extrinsic| declaration does not work with clas...
12年弱 前 | 1
| 採用済み
回答済み
Some of my variables are not initialized when converted to C using Coder
The variables x_est and p_est are not used in the MATLAB code. Therefore the compiler eliminates them.
Some of my variables are not initialized when converted to C using Coder
The variables x_est and p_est are not used in the MATLAB code. Therefore the compiler eliminates them.
12年弱 前 | 3
| 採用済み
回答済み
Code generation for fuzzy logic model and recursive function with the Matlab Coder
You can declare the functions not supported by MATLAB Coder as <http://www.mathworks.com/help/toolbox/eml/ref/coder.extrinsic.ht...
Code generation for fuzzy logic model and recursive function with the Matlab Coder
You can declare the functions not supported by MATLAB Coder as <http://www.mathworks.com/help/toolbox/eml/ref/coder.extrinsic.ht...
約12年 前 | 0
回答済み
Code generation and class handle
Currently in MATLAB Coder, handle objects can be assigned to class properties only in the constructor of the class. This restric...
Code generation and class handle
Currently in MATLAB Coder, handle objects can be assigned to class properties only in the constructor of the class. This restric...
約12年 前 | 1
| 採用済み