Can you share the error message that you are seeing?
matlab function in simulink
2 次查看(过去 30 天)
显示 更早的评论
here is code for the machine learning function
function y = predictActivity(u)%#codegen
persistent n;
if isempty(n)
n = loadLearnerForCoder('EnsembleModel.mat');
end
y = predict(n,u);
end
whenever i use it on command line it works fine
i make its block in simulink like this
but when run its block in simulink i get many errors like this
plz someone help me in this i have been stuck on this for quite a while
thnx in advance
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sources 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!