how to reverse a string in matlab
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Selva Karna
el 13 de Nov. de 2013
Comentada: The Matlab Spot
el 13 de Nov. de 2013
how to reverse a string in matlab
0 comentarios
Respuesta aceptada
The Matlab Spot
el 13 de Nov. de 2013
Search the documentation/help for
flip
fliplr
flipud
1 comentario
The Matlab Spot
el 13 de Nov. de 2013
e.g.
>> str = 'xyz';
>> fliplr(str)
ans =
zyx
Más respuestas (1)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!