How to assign values to all the elements of a matrix in Stateflow action language?
1 view (last 30 days)
Show older comments
I want to assign different values to all the elements in Stateflow action language in one statement. So if A is a 3x3 matrix I would like to one statement like
A=[1 2 3; 4 5 6; 7 8 9]
and not a series of statements like
A[0][0]=1; A[0][1]=2; A[0][2]=3; etc.
According to the help files, the notation [1 2 3; 4 5 6; 7 8 9] can be used to define initial values in the model explorer, but it doesn't seem valid in action language. Any ideas?
0 Comments
Answers (1)
Muthukumar Ganesan
on 1 Aug 2022
Hi,
For charts with "Matlab" as action language A=[1 2 3; 4 5 6; 7 8 9] can be directly used whereas for the charts with "C" as action language, it is not feasible. One of the workaround would be to use Matlab function inside the chart to accomplish it.
Hope this helps. Thanks.
0 Comments
See Also
Categories
Find more on Simulink Functions in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!