mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-19 22:32:44 +08:00
99 lines
3.1 KiB
HTML
99 lines
3.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
<title>返回 log(1 + number),甚至当 number 的值接近零也能计算出准确结果</title>
|
||
</head>
|
||
<body class="docs"><div id="layout">
|
||
<div id="layout-content"><div id="function.log1p" class="refentry">
|
||
<div class="refnamediv">
|
||
<h1 class="refname">log1p</h1>
|
||
<p class="verinfo">(PHP 4 >= 4.1.0, PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">log1p</span> — <span class="dc-title">
|
||
返回 log(1 + number),甚至当 number 的值接近零也能计算出准确结果
|
||
</span></p>
|
||
|
||
</div>
|
||
<div class="refsect1 description" id="refsect1-function.log1p-description">
|
||
<h3 class="title">说明</h3>
|
||
<div class="methodsynopsis dc-description">
|
||
<span class="methodname"><strong>log1p</strong></span>
|
||
( <span class="methodparam"><span class="type">float</span> <code class="parameter">$number</code></span>
|
||
) : <span class="type">float</span></div>
|
||
|
||
<p class="para rdfs-comment">
|
||
<span class="function"><strong>log1p()</strong></span> 返回 log(1 + <code class="parameter">number</code>),甚至当
|
||
<code class="parameter">number</code> 的值接近零也能计算出准确结果。
|
||
<span class="function"><a href="log.html" class="function">log()</a></span> might only return log(1) in this case
|
||
due to lack of precision.
|
||
</p>
|
||
</div>
|
||
|
||
<div class="refsect1 parameters" id="refsect1-function.log1p-parameters">
|
||
<h3 class="title">参数</h3>
|
||
<p class="para">
|
||
<dl>
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">number</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
要处理的参数
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
</dl>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
<div class="refsect1 returnvalues" id="refsect1-function.log1p-returnvalues">
|
||
<h3 class="title">返回值</h3>
|
||
<p class="para">
|
||
log(1 + <code class="parameter">number</code>)
|
||
</p>
|
||
</div>
|
||
|
||
<div class="refsect1 changelog" id="refsect1-function.log1p-changelog">
|
||
<h3 class="title">更新日志</h3>
|
||
<p class="para">
|
||
<table class="doctable informaltable">
|
||
|
||
<thead>
|
||
<tr>
|
||
<th>版本</th>
|
||
<th>说明</th>
|
||
</tr>
|
||
|
||
</thead>
|
||
|
||
<tbody class="tbody">
|
||
<tr>
|
||
<td>5.3.0</td>
|
||
<td>
|
||
此函数在所有平台上均可用
|
||
</td>
|
||
</tr>
|
||
|
||
</tbody>
|
||
|
||
</table>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
<div class="refsect1 seealso" id="refsect1-function.log1p-seealso">
|
||
<h3 class="title">参见</h3>
|
||
<p class="para">
|
||
<ul class="simplelist">
|
||
<li class="member"><span class="function"><a href="expm1.html" class="function" rel="rdfs-seeAlso">expm1()</a> - 返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果</span></li>
|
||
<li class="member"><span class="function"><a href="log.html" class="function" rel="rdfs-seeAlso">log()</a> - 自然对数</span></li>
|
||
<li class="member"><span class="function"><a href="log10.html" class="function" rel="rdfs-seeAlso">log10()</a> - 以 10 为底的对数</span></li>
|
||
</ul>
|
||
</p>
|
||
</div>
|
||
|
||
</div></div></div></body></html> |