필터 지우기
필터 지우기

Can classes or class variables be used in stateflow charts / test sequences

조회 수: 16 (최근 30일)
Brad
Brad 2024년 4월 25일
댓글: Brad 2024년 5월 8일
I'm creating a test sequence for a test harness and would like to use an object in the steps. However, I receive a message that Data type of '<initialized object variable name>' is not supported in Stateflow charts. I know I can perform function calls, but I need some state maintenance to drive function behavior and would like to use an object's methods instead of raw functions.
Is this possible?

채택된 답변

Sanju
Sanju 2024년 4월 29일
It is not possible to directly use object methods in Stateflow charts. Stateflow charts only support basic data types and cannot directly handle objects. However, you can work around this limitation by using function calls instead of object methods. You can define functions that encapsulate the desired behavior and call these functions from your Stateflow chart. This way, you can still achieve the state maintenance and drive the desired behavior using functions.
Here's an example to illustrate this approach,
% Define a function that encapsulates the desired behavior
function myFunction(obj)
% Perform state maintenance and drive behavior using object methods
obj.method1();
obj.method2();
% ...
end
Then, in your Stateflow chart, you can call this function:
chart MyChart
properties
obj; % Initialized object variable
end
methods
function entry(obj)
% Call the function that encapsulates the desired behavior
myFunction(obj);
end
end
end
By using this approach, you can achieve the desired state maintenance and behavior while still working within the limitations of Stateflow charts.
Hope this helps!
  댓글 수: 4
Brad
Brad 2024년 5월 8일
Thanks again for the inputs. Test sequences don't have access to the base workspace and don't appear to allow usage of evalin / assignin calls. I tried working around that by using an evalin call from a function called in a test sequence, but the test sequence then tried to add the object variable from the function's evalin call to the local variables in the test sequence and it could not do so b/c of the inability to handle object data types.
My setup is an intentionally simple 1-step test sequence in MATLAB 2023b that just seeks to find some way to call a method from an object in the base workspace or somehow get that object reference accessible to the test sequence.
Brad
Brad 2024년 5월 8일
The workaround I went with is using a MATLAB function block to hold the object and its state, then I use the test sequence to drive ports on the MATLAb function block to support multiple test cases and state changes.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by