Switching vector position in a cell array

Hi,
I have a cell array a = {'Susan' 'John'};
May I know if it is possible to switch positions of two vectors at the same time to become a = {'John' 'Susan'}?
For vector, we can write a([1 2]) = a([2 1]); I would like to have something like to apply for cell array. Thank you!

1 件のコメント

Mehmed Saad
Mehmed Saad 2020 年 5 月 16 日
Use the same strategy for cell array
a([2 1])
ans=
{'John'} {'Susan'}
Also read this

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

質問済み:

HYZ
2020 年 5 月 16 日

コメント済み:

2020 年 5 月 16 日

Community Treasure Hunt

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

Start Hunting!

Translated by