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});

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by