Create an Array/a List of Position

Hello ! I have this code where i search Position of input and output of a Model Reference Block:
portPos = get_param('Model Reference Name', 'PortConnectivity');
for element = portPos(:)'
A = element.Position;
%Append Position A to an array
end
And i would like to add every in/out put Position in an array.
The position is a 1x2 double like this :
145 75
145 135
145 195
145 255
145 315
And so i would like to have something like this :
Position_List = [145 75, 145 135, 145 195, 145 255, 145 315]

回答 (1 件)

Adam
Adam 2019 年 6 月 27 日

0 投票

Position_List = reshape( position', 1, [] );

カテゴリ

ヘルプ センター および File ExchangeFile Operations についてさらに検索

タグ

質問済み:

2019 年 6 月 27 日

回答済み:

2019 年 6 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by