Function 'daysact' not supported for code generation.
古いコメントを表示
I am using this simple code inside a user defined Matlab function in SIMULINK
NumDays = daysact('20-March','21-March');
But it shows error that "Function 'daysact' not supported for code generation."
採用された回答
その他の回答 (1 件)
Sean de Wolski
2021 年 1 月 14 日
You should use the newer and recommended datetime / duration classes which support c-codegen:
d = days(datetime(t1)-datetime(t2));
カテゴリ
ヘルプ センター および File Exchange で Fixed-Point Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!