How to concatenate strings and numbers with individual elements?
1 回表示 (過去 30 日間)
古いコメントを表示
BHARAT CHARAN GOUD MARUPALLI
2021 年 1 月 12 日
編集済み: Walter Roberson
2021 年 1 月 12 日
I would like to concatenate the strings and numbers. If my input is Elements = {'H', 'N', 'Fe', 'Ni', 'Ti'} and Values = [1 1 0.3 0.5 0.2], I want the ouput of result = HNFe0.3Ni0.5Ti0.2. For the value '1', it should not assign anything.
0 件のコメント
採用された回答
Walter Roberson
2021 年 1 月 12 日
Elements = {'H', 'N', 'Fe', 'Ni', 'Ti'}
Values = [1 1 0.3 0.5 0.2];
Vs = string(Values);
Vs(Values == 1) = "";
strjoin(Elements + Vs, '')
2 件のコメント
Walter Roberson
2021 年 1 月 12 日
編集済み: Walter Roberson
2021 年 1 月 12 日
"The free energy of " + strjoin(Elements + Vs, '') + " is" + result + "KJ"
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!