realmax is really real max, but is realmin really real min?
이전 댓글 표시
The following is expected behavior for realmax:
>> realmax
ans =
1.797693134862316e+308
>> realmax*2
ans =
Inf
But the following is unexpected behavior for realmin (at least for me):
>> realmin
ans =
2.225073858507201e-308
>> realmin/2
ans =
1.112536929253601e-308
I keep getting representable numbers until I divide realmin by 2^53. Am I missing a subtlety in what "realmin" means?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!