how to change multiple elements in a character array at once

9 vues (au cours des 30 derniers jours)
Rachel Barbera
Rachel Barbera le 4 Sep 2018
Réponse apportée : GK le 4 Sep 2018
Letters = 'vegetables' Hi, I was trying to change the 5th element of the character arrays to the letter X and the last element to the letter Z in one short command. So the final answer will be : Letters = 'vegeXableZ' How can I do it?

Réponse acceptée

Stephen23
Stephen23 le 4 Sep 2018
Modifié(e) : Stephen23 le 4 Sep 2018
Just use indexing:
Letters([5,end]) = 'XZ'

Plus de réponses (1)

GK
GK le 4 Sep 2018
You can simply use,
Letters(5)='X';
Letters(end)='Z';

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by