how to reverse a string in matlab

4 vues (au cours des 30 derniers jours)
Selva Karna
Selva Karna le 13 Nov 2013
Commenté : The Matlab Spot le 13 Nov 2013
how to reverse a string in matlab

Réponse acceptée

The Matlab Spot
The Matlab Spot le 13 Nov 2013
Search the documentation/help for
flip
fliplr
flipud
  1 commentaire
The Matlab Spot
The Matlab Spot le 13 Nov 2013
e.g.
>> str = 'xyz';
>> fliplr(str)
ans =
zyx

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 13 Nov 2013
fliplr()

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by