Limiting the values of a column

4 visualizzazioni (ultimi 30 giorni)
I have a column 'y' contains different values. I want to only take the values between -10 and 10 in an other column.
How can I do that?
  2 Commenti
Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam il 14 Set 2020
Is it a matrix or table, can you show your variable?
Hazem Al-Bulqini
Hazem Al-Bulqini il 14 Set 2020
A vector of almost 70000 rows and one column.

Accedi per commentare.

Risposta accettata

the cyclist
the cyclist il 14 Set 2020
If you mean that y is a column vector, then
y_new = y((y>=-10) & (y<=10))
will give you a new column vector with only the values between (and including) -10 and 10.

Più risposte (0)

Categorie

Scopri di più su Tables in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by