フィルターのクリア

Sum of letters in matlab

25 ビュー (過去 30 日間)
googo
googo 2013 年 4 月 15 日
Asumming that I have a string = 'abcd'
and i want to sum 'a' and 'b' to be z = 'ab'... i guess a(1)+a(2) won't work...
so how can i do it?
basic thing to do but i'm new in matlab and just started to learn about strings.

回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 4 月 15 日
string(1:2)
or
[string(1), string(2)]
or
horzcat(string(1), string(2))

カテゴリ

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