Replacing the values

2 visualizaciones (últimos 30 días)
kash
kash el 29 de En. de 2012
I have a matrix of 100x62 ,the min and maximum values are
,0.2 and .9 respectively ,now i want all these values to be replaced by "DBLCL",PLEASE HELP
  1 comentario
Image Analyst
Image Analyst el 29 de En. de 2012
If your matrix is numerical, you can only have numbers in it, not some string like "DBLCL"

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 29 de En. de 2012
If DBLCL is a variable that has a number in it, you can do something like this:
m = rand(11,10); % Sample data.
% Find indexes matching the replacement criteria.
indexes = m > 0.2 & m < 0.9;
% Do the replacement.
m(indexes) = 99 % Or whatever other number you want.

Más respuestas (0)

Categorías

Más información sobre Cell Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by