Borrar filtros
Borrar filtros

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

8 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

Sanju
Sanju el 29 de Abr. de 2024
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 comentarios
Brad
Brad el 8 de Mayo de 2024
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 el 8 de Mayo de 2024
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.

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by