Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.1 - 日本語

Change language to:
English - Français - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Elementary Functions > log1p

log1p

引数に1を足した数の自然対数を厳密に計算する

呼び出し手順

y=log1p(x)

パラメータ

x

実数スカラー, ベクトルまたは行列

y

実数スカラー, ベクトルまたは行列

説明

logp1(x) は "要素毎"の log(1+x) 関数です. y(i,j)=log(1 + x(i,j)). この関数は x > -1, で定義され,|x| << 1 において 正確にlog(1+x)を計算する必要がある場合に使用されます.

format("e",24)
log(1.001)
log1p(0.001)
log(1 + 1.e-7)
log1p(1.e-7)
log(1 + 1.e-20)
log1p(1.e-20)
format("v") //reset default format

参照

  • log — 自然対数

作者

B.P.

<< log10 Elementary Functions log2 >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Mar 03 11:00:51 CET 2011