How replace matching string

Hi,
I have below cell array:
Pass Pass{overflow :1,unbound:5,warning:9} Miss
Pass Miss Trigger
Passs Pass Pass
I want to replace:
  1. Pass with '1',
  2. Miss with '2' ,
  3. Any thing else with '2'
Kindly some one help how to do this,
I can only strrep to replace, I dont not know how to do 3rd condition(any thing else)

Respuestas (1)

Rik
Rik el 12 de Jun. de 2019
Editada: Rik el 12 de Jun. de 2019

1 voto

Because your second and third condition can be merged, you can use ismember:
data={'Pass','Pass{overflow :1,unbound:5,warning:9}','Miss';
'Pass','Miss','Trigger';
'Passs','Pass','Pass'};
L=ismember(data,{'Pass'});
output=2*ones(size(data));
output(L)=1;
Note that this requires exact matches. You could also write a custom function and use cellfun:
output2=cellfun(@my_custom_fun,data)
function val=my_custom_fun(str)
if strcmpi(str,'pass')
val=1;
elseif strcmpi(str,'miss')
val=2;
elseif contains(str,'Pass')
val=1.5;
else
val=2;
end
end

3 comentarios

Rik
Rik el 22 de Jun. de 2019
Did this suggestion solve your problem? If so, please consider marking it as accepted answer. It will make it easier for other people with the same question to find an answer. If this didn't solve your question, please comment with what problems you are still having.
Mekala balaji
Mekala balaji el 28 de Jun. de 2019
It giving me error,
Error using cellfun
Undefined function 'my_custom_fun' for input arguments of type 'char'.
Stephen23
Stephen23 el 28 de Jun. de 2019
@Mekala balaji: did you copy the function that Rik gave you, and save it to your Search Path (e.g. the current directory) using that function name?

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Productos

Versión

R2016a

Preguntada:

el 12 de Jun. de 2019

Comentada:

el 28 de Jun. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by