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
8c5cedee
Kaydet (Commit)
8c5cedee
authored
May 18, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
New description for math.frexp() -- poor description noted by
Francois Pinard.
üst
8a6d4d9c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
libmath.tex
Doc/lib/libmath.tex
+6
-2
No files found.
Doc/lib/libmath.tex
Dosyayı görüntüle @
8c5cedee
...
@@ -64,8 +64,12 @@ Return \code{\var{x} \%\ \var{y}}.
...
@@ -64,8 +64,12 @@ Return \code{\var{x} \%\ \var{y}}.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
frexp
}{
x
}
\begin{funcdesc}
{
frexp
}{
x
}
Return the matissa and exponent for
\var
{
x
}
. The mantissa is
Convert a floating-point number to fractional and integral
positive.
components. If
\var
{
x
}
is zero, returns
\code
{
(0.0, 0)
}
, otherwise
returns
\code
{
(
\var
{
frac
}
,
\var
{
exp
}
)
}
such that
\code
{
\var
{
frac
}
*
2**
\var
{
exp
}}
will equal
\var
{
x
}
.
\var
{
exp
}
will be an integer, and
the absolute value of
\var
{
frac
}
will be in the range [0.5, 1.0)
(
\var
{
frac
}
will share the sign of
\var
{
x
}
).
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
hypot
}{
x, y
}
\begin{funcdesc}
{
hypot
}{
x, y
}
...
...
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