How do I limit the values in an array?
309 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Stuart Ellison
el 12 de Jul. de 2017
Comentada: Walter Roberson
el 30 de Nov. de 2020
This should be an easy one.
If I have an array with...
0.203 0.506 0.167 0.904 1.671 5.247 0.037 0.679
How do I amend the individual values within the array that are greater than 1 and set them to 1?
e.g.
0.203 0.506 0.167 0.904 1.000 1.000 0.037 0.679
Thanks!
0 comentarios
Respuesta aceptada
ES
el 12 de Jul. de 2017
>> a = [0.203 0.506 0.167 0.904 1.671 5.247 0.037 0.679];
>> a(a>1)=1
0 comentarios
Más respuestas (1)
Jan Siegmund
el 27 de Mayo de 2020
Editada: Jan Siegmund
el 27 de Mayo de 2020
There is also a matlab function doing this:
A = min(A,1);
It takes A if A is the minimum of the two and 1 if 1 is the minimum of the two.
2 comentarios
Walter Roberson
el 30 de Nov. de 2020
min(randn(3,3),1) works fine when I test it. Perhaps you accidentally defined min as a variable
Ver también
Categorías
Más información sobre Multidimensional Arrays en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!