Filter löschen
Filter löschen

Find matches without repetition from two cell arrays + extra condition

1 Ansicht (letzte 30 Tage)
Hello,
In order to reduce the size of a matrix I need to find all the elements of the periodic table (patterns - cell 1) of all the species considered (cell 2). Also, it has to take in account every number as the end of the evaluable pattern.
Example:
Elements = {'H', 'He', 'Li', .... };
NameSpecies = {'H2','O2','H2O2','CH2OH','C'};
Desired_Result = {'H','O','C'};
At the moment I'm using this piece of code that I found on the net
Match=cellfun(@(x) ismember(x,NameSpecies), Elements, 'UniformOutput', 0);
Elements = Elements(cell2mat(Match));
but this function is only going to give me the same individuals elements, in the case of the example the result is
Result = {'C'};
Any suggestion to tackle it without brute force?
Thanks for your time!
  2 Kommentare
madhan ravi
madhan ravi am 6 Dez. 2018
what's the pattern ?
Desired_Result = {'H','O','C'};
Alberto Cuadra Lara
Alberto Cuadra Lara am 6 Dez. 2018
Bruno has already resolved the question. Okay pattern maybe was not the best description of the problem. The problem consisted to find the common elements of the set of species considered.
Thanks.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 6 Dez. 2018
You don't even need the period table, assuming element start with an Uppercase eventually followed by lower-case
NameSpecies = {'He','O2','H2O2','CH2OH','C'};
Tmp = cell(size(NameSpecies));
for k = 1:length(Tmp)
Specie = NameSpecies{k};
Specie(Specie>='0' & Specie<='9') = ' ';
idx = find([(Specie>='A' & Specie<='Z'), true]);
lgt = diff(idx);
Tmp{k} = strtrim(mat2cell(Specie, 1, lgt));
end
El = unique(cat(2,Tmp{:}))
The result is:
El =
1×4 cell array
{'C'} {'H'} {'He'} {'O'}

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by