フィルターのクリア

Why there is no truncate function in Matlab?

53 ビュー (過去 30 日間)
Vidz
Vidz 2017 年 8 月 24 日
コメント済み: Vidz 2017 年 8 月 30 日
Hi,
I need to truncate values in a For loop and round() isn't working. I was just wondering why there is no truncate function yet?

採用された回答

Image Analyst
Image Analyst 2017 年 8 月 24 日
Because round sometimes rounds up - away from zero. I think you may want to use fix() instead of round(). It always rounds towards zero, in other words, truncates. See if that works for you and let me know.
  2 件のコメント
Walter Roberson
Walter Roberson 2017 年 8 月 24 日
You should also know about floor(), which rounds towards negative infinity -- the maximum integer less than or equal to the input.
Vidz
Vidz 2017 年 8 月 30 日
Thanks for your help, fix() works. Can do x=x-rem(x,0.001) as well.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by