how to reverse a string in matlab

4 ビュー (過去 30 日間)
Selva Karna
Selva Karna 2013 年 11 月 13 日
コメント済み: The Matlab Spot 2013 年 11 月 13 日
how to reverse a string in matlab

採用された回答

The Matlab Spot
The Matlab Spot 2013 年 11 月 13 日
Search the documentation/help for
flip
fliplr
flipud
  1 件のコメント
The Matlab Spot
The Matlab Spot 2013 年 11 月 13 日
e.g.
>> str = 'xyz';
>> fliplr(str)
ans =
zyx

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 11 月 13 日
fliplr()

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by