Thresholding a value in matrix

17 visualizaciones (últimos 30 días)
ramdhan zakwan
ramdhan zakwan el 19 de Nov. de 2020
Comentada: Rik el 17 de Nov. de 2022
I had been given a 8x8 matrix. How can I theshold a value in the matrix?
for example 100 or 255. Thank you.

Respuesta aceptada

Rik
Rik el 19 de Nov. de 2020
You can use the comparator operators to apply a threshold:
data=randi(200,8,8);
L= data<100; %L is true for all positions with a value below 100
data2=data;%make a copy
data2(L)=200 %edit only some values
data2 = 8×8
189 200 200 200 200 200 155 160 200 200 200 200 200 189 132 200 200 200 123 128 200 173 200 101 200 200 200 156 157 200 169 200 200 200 200 147 117 200 157 163 164 172 101 134 170 200 200 196 200 165 200 123 118 195 200 200 118 200 200 200 200 200 183 200
  3 comentarios
Daniel Arturo
Daniel Arturo el 17 de Nov. de 2022
why is it data=randi(200,8,8) ?
Rik
Rik el 17 de Nov. de 2022
@Daniel Arturo That is how I generated an array with numbers of approximately the same data range as shown in the question. Because it was posted as an image I couldn't use the actual data without copying them all by hand. This command generates an 8x8 grid with random integers from 1 to 200.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by