declaring variables for codegen

2 views (last 30 days)
Melissa
Melissa on 25 Apr 2012
Good Morning All,
I was wondering if anyone had an easy to follow of indepth explanation of how to properly declare the variables in the codegen for Matlab? I tried using the coder project GUI where I declared the bounds from infinity to infinity but I still generate an error. Any suggestions?
Thanks,
Mel
  1 Comment
Kaustubha Govind
Kaustubha Govind on 25 Apr 2012
It's not clear to me what variables you are asking about - did you mean the input arguments? Also, please specify the error message that you receive.

Sign in to comment.

Accepted Answer

Rick Rosson
Rick Rosson on 25 Apr 2012
The basic requirement is that you need to specify three characteristics for each input argument of the entry-point functions:
  1. The class of the variable (e.g. double, single, char, int32, etc.)
  2. The array size (or at least the upper bound of each dimension)
  3. The complexity of the variable (false indicates real-valued, true indicates complex).
In general, you do not need to specify these characteristics for any variables other than the input arguments of the entry-point functions, as long as MATLAB Coder can infer what they are from the code itself.
If you do not specify any of these characteristics for any of the input arguments, MATLAB Coder will assume the following default values:
  1. the class will be double
  2. the array size will be scalar (1 x 1)
  3. the complexity will be false (real-valued)
The Coder GUI, however, will generally show <Undefined> for each input argument until you actually specify these three characteristics. If you do not specify any variable that is <Undefined>, then MATLAB Coder will return an error when you try to generate the code.
HTH.
Rick

More Answers (0)

Categories

Find more on MATLAB Coder in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!