How to put values to zero within a specified range?

11 ビュー (過去 30 日間)
Sam
Sam 2015 年 1 月 6 日
回答済み: Amit 2015 年 1 月 6 日
I've got a datatype 31x1 double. I want to put the values between -0.5 and + 0.5 to zero. How do I do this?

回答 (1 件)

Amit
Amit 2015 年 1 月 6 日
Lets say your data variable is A then:
A(A>-0.5 & A < 0.5) = 0;

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by