MATLAB is missing one essential rounding function!

24 ビュー (過去 30 日間)
Jim Luschen
Jim Luschen 2011 年 10 月 26 日
Okay, besides the normal rounding function we all know and love ("round"; rounding towards the nearest integer), we have the three special rounding functions: ceil, floor, and fix. We can use them to round towards positive infinity, negative infinity, and towards zero, respectively. But there is no function for rounding AWAY FROM ZERO.
Come on, guys. Let's complete the group of functions and get that last one defined and implemented. I need it right now.

採用された回答

Daniel Shub
Daniel Shub 2011 年 10 月 26 日
ceilfix = @(x)ceil(abs(x)).*sign(x);
or some such nonsense name.
ceilfix(-2:0.2:2)
  2 件のコメント
Sean de Wolski
Sean de Wolski 2011 年 10 月 26 日
I like your algorithm better!
Jim Luschen
Jim Luschen 2011 年 10 月 26 日
you guys crack me up! thanks again for the help.

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

その他の回答 (3 件)

Sean de Wolski
Sean de Wolski 2011 年 10 月 26 日
function out = rafz(in)
%out = rafz(in), round away from zero
%SCd 10/26/2011
%
out = max(abs(ceil(in)),abs(floor(in))).*sign(in);
end
Now you have it! I couldn't come up with a better title, unfortunately.
  1 件のコメント
Daniel Shub
Daniel Shub 2011 年 10 月 26 日
I like your name better than mine.

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


Jim Luschen
Jim Luschen 2011 年 10 月 26 日
Thank you Sean and Daniel -- I bow to your superior intellects!
But I still think MATLAB should add the function to their library. Similar trickery to yours can conjure "floor" from "ceil", and yet MATLAB includes both of those functions in their library.
  3 件のコメント
Daniel Shub
Daniel Shub 2011 年 10 月 26 日
But who is going to get their answer accepted? Sean was first and had a good name. I was second and had a crappy name, but potentially a better algorithm.
Make a request: http://www.mathworks.com/support/service_request/login_servicerequests.html?targetURL=/support/service_requests/contact_support.do
Daniel Shub
Daniel Shub 2011 年 10 月 26 日
stop beating me Sean.

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


Tom Smits
Tom Smits 2013 年 3 月 14 日
I was surprised as well that there was no 'round away from zero' function in MATLAB but eventually I figured that the solution is really simple, so I thought I'd share my findings:
ceilfix(x) = sign(x)+fix(x)
cheers
  2 件のコメント
Walter Roberson
Walter Roberson 2013 年 3 月 14 日
To confirm: is that addition rather than multiplication ?
Teja Muppirala
Teja Muppirala 2013 年 3 月 15 日
This won't work for nonzero integers:
ceilfix(1.0) = sign(1.0) + fix(1.0) = 1.0 + 1.0 = 2

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

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by