Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



math::constants(n)                            Tcl Math Library                            math::constants(n)



____________________________________________________________________________________________________________

NAME
       math::constants - Mathematical and numerical constants

SYNOPSIS
       package require Tcl  ?8.3?

       package require math::constants  ?1.0.1?

       ::math::constants::constants args

       ::math::constants::print-constants args

____________________________________________________________________________________________________________

DESCRIPTION
       This  package defines some common mathematical and numerical constants.  By using the package you get
       consistent values for numbers like pi and ln(10).

       It defines two commands:

             One for importing the constants

             One for reporting which constants are defined and what values they actually have.


       The motivation for this package is that quite often, with (mathematical)  computations,  you  need  a
       good approximation to, say, the ratio of degrees to radians. You can, of course, define this like:

           variable radtodeg [expr {180.0/(4.0*atan(1.0))}]

       and use the variable radtodeg whenever you need the conversion.

       This has two drawbacks:

             You need to remember the proper formula or value and that is error-prone.

             Especially  with  the  use  of mathematical functions like atan you assume that they have been
              accurately implemented. This is seldom or never the case and for each  platform  you  can  get
              subtle differences.

       Here is the way you can do it with the math::constants package:

           package require math::constants
           ::math::constants::constants radtodeg degtorad

       which creates two variables, radtodeg and (its reciprocal) degtorad in the calling namespace.

       Constants  that  have  been defined (their values are mostly taken from mathematical tables with more
       precision than usually can be handled) include:

             basic constants like pi, e, gamma (Euler's constant)

             derived values like ln(10) and sqrt(2)

             purely numerical values such as 1/3 that are included for convenience and for  the  fact  that
              certain seemingly trivial computations like:

                  set value [expr {3.0*$onethird}]

              give exactly the value you expect (if IEEE arithmetic is available).


PROCEDURES
       The package defines the following public procedures:

       ::math::constants::constants args
              Import the constants whose names are given as arguments


       ::math::constants::print-constants args
              Print the constants whose names are given as arguments on the screen (name, value and descrip-tion) description)
              tion) or, if no arguments are given, print all defined constants. This is mainly a convenience
              procedure.


BUGS, IDEAS, FEEDBACK
       This  document,  and  the  package  it  describes,  will undoubtedly contain bugs and other problems.
       Please report such in the category math ::  constants  of  the  Tcllib  SF  Trackers  [http://source -
       forge.net/tracker/? group_id=12883].   Please  also report any ideas for enhancements you may have for
       either package and/or documentation.

KEYWORDS
       constants, degrees, e, math, pi, radians

CATEGORY
       Mathematics

COPYRIGHT
       Copyright (c) 2004 Arjen Markus <arjenmarkus@users.sourceforge.net>




math                                                1.0.1                                 math::constants(n)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Tcl.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Tcl через их страницу создания отчетов ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.