How to concatenate strings and numbers with individual elements?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
BHARAT CHARAN GOUD MARUPALLI
il 12 Gen 2021
Modificato: Walter Roberson
il 12 Gen 2021
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 Commenti
Risposta accettata
Walter Roberson
il 12 Gen 2021
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 Commenti
Walter Roberson
il 12 Gen 2021
Modificato: Walter Roberson
il 12 Gen 2021
"The free energy of " + strjoin(Elements + Vs, '') + " is" + result + "KJ"
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!