Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
2f707c98
Kaydet (Commit)
2f707c98
authored
Ock 25, 2011
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add math.erfc and turtledemo.
üst
f9b8a19d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
3.2.rst
Doc/whatsnew/3.2.rst
+17
-2
No files found.
Doc/whatsnew/3.2.rst
Dosyayı görüntüle @
2f707c98
...
@@ -993,10 +993,15 @@ of nearly equal quantities:
...
@@ -993,10 +993,15 @@ of nearly equal quantities:
0.013765762467652909
0.013765762467652909
The :func:`~math.erf` function computes a probability integral or `Gaussian
The :func:`~math.erf` function computes a probability integral or `Gaussian
error function <http://en.wikipedia.org/wiki/Error_function>`_:
error function <http://en.wikipedia.org/wiki/Error_function>`_. The
complementary error function, :func:`~math.erfc`, is ``1 - erf(x)``:
>>> erf(1.0/sqrt(2.0)) # portion of normal distribution within 1 standard deviation
>>> erf(1.0/sqrt(2.0)) # portion of normal distribution within 1 standard deviation
0.682689492137086
0.682689492137086
>>> erfc(1.0/sqrt(2.0)) # portion of normal distribution outside 1 standard deviation
0.31731050786291404
>>> erf(1.0/sqrt(2.0)) + erfc(1.0/sqrt(2.0))
1.0
The :func:`~math.gamma` function is a continuous extension of the factorial
The :func:`~math.gamma` function is a continuous extension of the factorial
function. See http://en.wikipedia.org/wiki/Gamma_function for details. Because
function. See http://en.wikipedia.org/wiki/Gamma_function for details. Because
...
@@ -1967,6 +1972,16 @@ parameters, the return types will also be an ASCII-encoded byte strings:
...
@@ -1967,6 +1972,16 @@ parameters, the return types will also be an ASCII-encoded byte strings:
(Work by Nick Coghlan, Dan Mahn, and Senthil Kumaran in :issue:`2987`,
(Work by Nick Coghlan, Dan Mahn, and Senthil Kumaran in :issue:`2987`,
:issue:`5468`, and :issue:`9873`.)
:issue:`5468`, and :issue:`9873`.)
turtledemo
----------
The demonstration code for the :mod:`turtle` module was moved from the *Demo*
directory to main library. It includes over a dozen sample scripts with
lively displays. Being on :attr:`sys.path`, it can now be run directly
from the command-line::
$ python -m turtledemo
Multi-threading
Multi-threading
===============
===============
...
@@ -2166,7 +2181,7 @@ members of the community to create and share external changesets. See
...
@@ -2166,7 +2181,7 @@ members of the community to create and share external changesets. See
:pep:`385` for details.
:pep:`385` for details.
To learn to use the new version control system, see the `tutorial by Joel
To learn to use the new version control system, see the `tutorial by Joel
Spolsky <http://hginit.com>`_ or the `
guide to Mercurial w
orkflows
Spolsky <http://hginit.com>`_ or the `
Guide to Mercurial W
orkflows
<http://mercurial.selenic.com/guide/>`_.
<http://mercurial.selenic.com/guide/>`_.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment