Not Generating Accurate Elements from Inequality

1 visualización (últimos 30 días)
Jonathan Pinko
Jonathan Pinko el 24 de Mzo. de 2020
Comentada: Jonathan Pinko el 25 de Mzo. de 2020
I have a vector Fezq, with size 116x1. I would like to remove all the elements of this vector that have an absolute value greater than .025, so I used the line of code shown below.
Feyqlimit = Fezq(Fezq <= abs(.025))
Yet after I applied this, I generated this as the solution:
Feyqlimit =
-0.0203
0.0194
-0.6905
-0.2784
Does anyone have any ideas as to why my inequality isn't functioning correctly?
Thanks,
Jonathan

Respuesta aceptada

Sindar
Sindar el 25 de Mzo. de 2020
Feyqlimit = Fezq(abs(Fezq) <= .025)

Más respuestas (0)

Categorías

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

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by