Can PLC Coder generate ST from "MATLAB Function"-Block that uses Classes?

1 回表示 (過去 30 日間)
Clemens Betzold
Clemens Betzold 2017 年 6 月 28 日
編集済み: Sri Kapali 2021 年 2 月 22 日
Hello everybody,
i am trying to generate structured text from a "MATLAB Function"-Block using PLC Coder.
Within the "MATLAB Function"-Block, i create an instance of a very simple MATLAB Class:
function y = fcn(u)
%#codegen
test = PLCtest();
y = test.a + u;
The used class "PLCtest" is defined as follows:
classdef PLCtest
properties
a = 5;
end
methods
end
end
When i try to generate ST from the "MATLAB Function"-Block with PLC Coder, i get the error:
Is there a way to include Classes for PLC code generation? I have MATLAB 2016a and Simulink PLC Coder 2.1.

回答 (1 件)

Sri Kapali
Sri Kapali 2021 年 2 月 22 日
編集済み: Sri Kapali 2021 年 2 月 22 日
Hello,
My understanding is that you would like to generate code for MATLAB class definitions using Simulink PLC Coder. Simulink PLC Coder currently does not support MATLAB classes for code generation. You could try converting you class definition to a Simulink.Parameter or Simulink.Enum type object to generate structured text code for the same.

カテゴリ

Help Center および File ExchangeSimulink PLC Coder についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by