필터 지우기
필터 지우기

Using Data Store Memory in Stateflow

조회 수: 10 (최근 30일)
Saygin
Saygin 2015년 8월 15일
댓글: Saygin 2015년 8월 18일
Hi, I use 'data story memory' block with bus which has matrix(arrray) elements. When accessing array element of structure data in stateflow chart(Action Language: C) following error is occured. If action language is matlab, there is no error with same structure.
"Array dimensions mismatch for structure data member..."
I've attached sample model file about this problem.

채택된 답변

Chaitali Gondhalekar
Chaitali Gondhalekar 2015년 8월 17일
I understand that you are trying to write to a Data Store Memory using C action language.
In order to achieve this in "Chart(C)", you can index into the array as follows:
MyData.buffer[0][0] = 1;
C action language follows zero based indexing as opposed to MATLAB action language that follows one based indexing. You can refer to the link below for further information about how to modify the action language of a chart:
You can also refer to the following link that lists the differences between MATLAB and C as Stateflow action language syntax:
Hope this helps!

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by