Limiting the values of a column

4 views (last 30 days)
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 Comments
Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam on 14 Sep 2020
Is it a matrix or table, can you show your variable?
Hazem Al-Bulqini
Hazem Al-Bulqini on 14 Sep 2020
A vector of almost 70000 rows and one column.

Sign in to comment.

Accepted Answer

the cyclist
the cyclist on 14 Sep 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.

More Answers (0)

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!