matlab.System class discrete state update mechanism
5 ビュー (過去 30 日間)
古いコメントを表示
Hello everyone, In Matlab 2017a, I have a class definition that is inherited from matlab.System class such that
classdef Tank < matlab.System
Then, I added a Discrete state for position parameter into class definition.
properties(DiscreteState)
itsPos
end
I instantiate an objet from this class in Simulink by using Matlab System Block. However, I don't know how to update that discrete state.
Since Simulink designates this state as model discrete state, I made implementation that Simulink solver updates the state.
If it is not valid, where should I implement the update method in the class definition? In stepImpl method of the class?
How do I feed system sample time into the class method stepImpl for the implementation of solver method?
Thanks.
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Create System Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!