Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://xmm.vilspa.esa.es/sas/8.0.0/doc/ssclib/node153.html
Дата изменения: Wed Jul 2 03:52:42 2008 Дата индексирования: Fri Sep 5 19:38:24 2008 Кодировка: Поисковые слова: п п п п п п п п п п п п п п п п п п п п п п п п п п |
isNearlyEqual(1110, 1112, 3) returns .true.
isNearlyEqual(1.2, 1.0, 3) returns .false.
isNearlyEqual(1.234, 1.231, 3) returns .true.
isNearlyEqual(1.2349, 1.2351, 3) returns .false.
because the rounded figures for the 1st and 2nd arguments to 3 digits
are 1.234 and 1.235, respectively. To get .true., the precision should
be 2 or less in this case;
isNearlyEqual(1.2349, 1.2351, 2) returns .true.