Borrar filtros
Borrar filtros

Values substitution of intervals.

7 visualizaciones (últimos 30 días)
Michal Schreiner
Michal Schreiner el 3 de Jun. de 2020
Comentada: Michal Schreiner el 3 de Jun. de 2020
Hello,
Its any easy way how to substitue interval in array with one value?
For example:
Values from 1400 to 1500 substitute with value 0.
Values from 1650 to 1750 substitute with 30.
Values from 1950 to 2000 substitue with 60.
I know about x(x<trehshold)=0 , but i need to use interval.
Thanks for reply!

Respuesta aceptada

madhan ravi
madhan ravi el 3 de Jun. de 2020
Editada: madhan ravi el 3 de Jun. de 2020
interval1 = (x >= 1400) & (x <= 1500);
interval2 = (x >= 1650) & (x <= 1750);
interval3 = (x >= 1950) & (x <= 2000);
x(interval1) = 0;
x(interval2) = 30;
x(interval3) = 60

Más respuestas (1)

David Hill
David Hill el 3 de Jun. de 2020
x(x>=1400&x<=1500)=0;

Categorías

Más información sobre Mathematics 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