How do I swap the elements in two arrays?

6 vues (au cours des 30 derniers jours)
Zhuoying Lin
Zhuoying Lin le 20 Nov 2017
Commenté : Zhuoying Lin le 20 Nov 2017
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!

Réponse acceptée

John D'Errico
John D'Errico le 20 Nov 2017
Do you mean this?
[a{3}, b{3}] = deal(b{3},a{3});
  1 commentaire
Zhuoying Lin
Zhuoying Lin le 20 Nov 2017
Yes, thank you so much!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by