フィルターのクリア

how to use cell array in stateflow?

3 ビュー (過去 30 日間)
Nam moon Kim
Nam moon Kim 2018 年 10 月 1 日
編集済み: ANKUR KUMAR 2018 年 10 月 1 日
I want to use cell array in stateflow. for example,
define,
Param1 = {1,2,3,4,5,6,7,8,9,10};
Param2 = {7,6,5,4,3,2,1};
Param1 and Param2 is input from chart1 to chart10.
in this situation, how can I make a cell array?

採用された回答

ANKUR KUMAR
ANKUR KUMAR 2018 年 10 月 1 日
編集済み: ANKUR KUMAR 2018 年 10 月 1 日
Param1 = {1,2,3,4,5,6,7,8,9,10};
B1=arrayfun(@(x) num2str(x) , cell2mat(Param1),'uni',0)
Param2 = {7,6,5,4,3,2,1};
B2=arrayfun(@(x) num2str(x) , cell2mat(Param2),'uni',0)
B1 =
1×10 cell array
'1' '2' '3' '4' '5' '6' '7' '8' '9' '10'
B2 =
1×7 cell array
'7' '6' '5' '4' '3' '2' '1'

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeComplex Logic についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by