How to assign values to all the elements of a matrix in Stateflow action language?

2 Ansichten (letzte 30 Tage)
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?

Antworten (1)

Muthukumar Ganesan
Muthukumar Ganesan am 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.

Kategorien

Mehr zu Complex Logic finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by