Function 'daysact' not supported for code generation.

조회 수: 2 (최근 30일)
Muhammad Usman
Muhammad Usman 2021년 1월 14일
답변: Walter Roberson 2021년 1월 14일
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."

채택된 답변

Walter Roberson
Walter Roberson 2021년 1월 14일
Correct. That function cannot be compiled.
The work-around is to use datetime and subtract.
dt1 = datetime('7-sep-2002','Locale','en_US')
dt1 = datetime
07-Sep-2002
dt2 = datetime('25-dec-2002','Locale','en_US')
dt2 = datetime
25-Dec-2002
NumDays = daysact(dt1, dt2) %what you cannot generate code for
NumDays = 109
NumDays2 = days(dt2-dt1) %replacement function
NumDays2 = 109

추가 답변 (1개)

Sean de Wolski
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));

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by