Function 'daysact' not supported for code generation.
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Muhammad Usman
le 14 Jan 2021
Réponse apportée : Walter Roberson
le 14 Jan 2021
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."
0 commentaires
Réponse acceptée
Walter Roberson
le 14 Jan 2021
Correct. That function cannot be compiled.
The work-around is to use datetime and subtract.
dt1 = datetime('7-sep-2002','Locale','en_US')
dt2 = datetime('25-dec-2002','Locale','en_US')
NumDays = daysact(dt1, dt2) %what you cannot generate code for
NumDays2 = days(dt2-dt1) %replacement function
0 commentaires
Plus de réponses (1)
Sean de Wolski
le 14 Jan 2021
You should use the newer and recommended datetime / duration classes which support c-codegen:
d = days(datetime(t1)-datetime(t2));
0 commentaires
Voir également
Catégories
En savoir plus sur Fixed-Point Designer dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!