m-file to find elements (text) in an alloy
1 view (last 30 days)
Show older comments
I need a MATLAB m-file to find elements and their ratio in an alloy. The input and output are shown in the below table:

For example input is ‘Al0.1Co0.25Cu14’ then the code gives output:

If there is any other information you need let me know.
Best
M. Vaghari
Accepted Answer
Stephen23
on 7 Sep 2020
>> str = 'Al0.1Co0.25Cu14AaBb';
>> [mat,spl] = regexp(str,'[A-Z][a-z]*','match','split');
>> vec = str2double(spl(2:end));
>> vec(isnan(vec)) = 1
vec =
0.1000 0.2500 14.0000 1.0000 1.0000
>> mat
mat =
'Al' 'Co' 'Cu' 'Aa' 'Bb'
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!