You can define datetime
array inputs at the
command line or in the MATLAB®
Coder™ app. Programmatic specification of datetime
input types by
using preconditioning (assert
statements) is not supported.
Use one of these procedures:
Alternatively, if you have a test file that calls your entry-point function with example
inputs, you can determine the input types by using
coder.getArgTypes
.
Use the -args
option:
D = datetime(2019,1:12,1,12,0,0); codegen myFunction -args {D}
To provide a type for a datetime
array to codegen
:
Define a datetime
array. For
example:
D = datetime(2019,1:12,1,12,0,0);
Create a type from
D
.
t = coder.typeof(D);
Pass the type to codegen
by using the
-args
option.
codegen myFunction -args {t}
To specify that a datetime
array input is constant, use
coder.Constant
with the -args
option:
D = datetime(2019,1:12,1,12,0,0); codegen myFunction -args {coder.Constant(C)}
Use one of these procedures:
coder.Constant
| coder.typeof
| datetime
| NaT