How do I swap the elements in two arrays?

6 ビュー (過去 30 日間)
Zhuoying Lin
Zhuoying Lin 2017 年 11 月 20 日
コメント済み: Zhuoying Lin 2017 年 11 月 20 日
Hi, I have these two arrays:
a={'sin', {0, '2*pi', 'pi/100'}, logical([0 1 1 0])};
b={'cos',{'-pi','pi','pi/15'},logical([0 0 0 1])};
Now I want to swap the third cell in a and b?
Thanks!

採用された回答

John D'Errico
John D'Errico 2017 年 11 月 20 日
Do you mean this?
[a{3}, b{3}] = deal(b{3},a{3});
  1 件のコメント
Zhuoying Lin
Zhuoying Lin 2017 年 11 月 20 日
Yes, thank you so much!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by