1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.10 $ -->
<reference id="ref.bc">
<title>BCMath任意精度数学関数</title>
<titleabbrev>BC math</titleabbrev>
<partintro>
<para>
PHP 4では、これらの関数は、PHPが構築オプション<option
role="configure">--enable-bcmath</option>を付けてコンパイルされて
いる場合にのみ使用できます。
PHP 3では、これらの関数は、PHPが構築オプション<option
role="configure">--disable-bcmath</option>を付けずにコンパイルされて
いる場合にのみ使用できます。
</para>
<note>
<para>
ライセンスが変更されたため、BCMATHライブラリは、PHPソース配布ファ
イルとは別に配布されています。tar-gzipされたアーカイブをURL:
<ulink url="&url.bcmath;">&url.bcmath;</ulink>からダウンロードす
ることが可能です。詳細については、PHP配布ファイルのファイル
<filename>README.BCMATH</filename> を参照下さい。
</para>
</note>
</partintro>
<refentry id="function.bcadd">
<refnamediv>
<refname>bcadd</refname>
<refpurpose>2つの任意精度の数値による加算</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcadd</methodname>
<methodparam><type>string</type><parameter>left operand</parameter></methodparam>
<methodparam><type>string</type><parameter>right operand</parameter></methodparam>
<methodparam><type>int</type><parameter>
<replaceable><optional>scale</optional></replaceable>
</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>left operand</parameter> を <parameter>right operand
</parameter> に加算して、その合計を文字列で返します。
オプションの <parameter>scale</parameter> パラメータは、結果における
小数点以下の桁数を指定するために使用します。
</para>
<para>
<function>bcsub</function>も参照下さい。
</para>
</refsect1>
</refentry>
<refentry id="function.bccomp">
<refnamediv>
<refname>bccomp</refname>
<refpurpose>2 つの任意精度数値の比較</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>int</type><methodname>bccomp</methodname>
<methodparam><type>string</type><parameter>left operand</parameter></methodparam>
<methodparam><type>string</type><parameter>right operand</parameter></methodparam>
<methodparam><type>int</type><parameter>
<replaceable><optional>scale</optional></replaceable>
</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>left operand</parameter> を <parameter>right operand
</parameter>と比較して、その結果を整数で返します。
オプションの<parameter>scale</parameter>パラメータは、結果における
小数点以下の桁数を指定するために使用します。
オプションの2つのオペランドが等しければ返り値は0となります。
<parameter>left operand</parameter>が<parameter>right operand</parameter>
より大きければ返り値は +1になり、小さければ -1 になります。
</para>
</refsect1>
</refentry>
<refentry id="function.bcdiv">
<refnamediv>
<refname>bcdiv</refname>
<refpurpose>2つの任意精度数値による除算</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcdiv</methodname>
<methodparam><type>string</type><parameter>left operand</parameter></methodparam>
<methodparam><type>string</type><parameter>right operand</parameter></methodparam>
<methodparam><type>int</type><parameter>
<replaceable><optional>scale</optional></replaceable>
</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>left operand</parameter>を<parameter>right operand
</parameter>で除算して、その結果を返します。
オプションの<parameter>scale</parameter>パラメータは、結果における
小数点以下の桁数を指定するために使用します。
</para>
<para>
<function>bcmul</function>も参照下さい。
</para>
</refsect1>
</refentry>
<refentry id="function.bcmod">
<refnamediv>
<refname>bcmod</refname>
<refpurpose>2 つの任意精度数値による剰余</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcmod</methodname>
<methodparam><type>string</type><parameter>left operand</parameter></methodparam>
<methodparam><type>string</type><parameter>modulus</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>modulus</parameter> で <parameter>left operand
</parameter>を割った余りを求めます。
</para>
<para>
<function>bcdiv</function>も参照下さい。
</para>
</refsect1>
</refentry>
<refentry id="function.bcmul">
<refnamediv>
<refname>bcmul</refname>
<refpurpose>2つの任意精度数値による乗算</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcmul</methodname>
<methodparam><type>string</type><parameter>left operand</parameter></methodparam>
<methodparam><type>string</type><parameter>right operand</parameter></methodparam>
<methodparam><type>int</type><parameter>
<replaceable><optional>scale</optional></replaceable>
</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>left operand</parameter> と <parameter>right operand
</parameter> を掛け算して、その結果を返します。
オプションの <parameter>scale</parameter> パラメータは、結果における
小数点以下の桁数を指定するために使用します。
</para>
<para>
<function>bcdiv</function>も参照下さい。
</para>
</refsect1>
</refentry>
<refentry id="function.bcpow">
<refnamediv>
<refname>bcpow</refname>
<refpurpose>任意精度数値のべき乗</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcpow</methodname>
<methodparam><type>string</type><parameter>x</parameter></methodparam>
<methodparam><type>string</type><parameter>y</parameter></methodparam>
<methodparam><type>int</type><parameter>
<replaceable><optional>scale</optional></replaceable>
</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>x</parameter> の <parameter>y</parameter> 乗を求めます。
オプションの <parameter>scale</parameter> パラメータは、結果における
小数点以下の桁数を指定するために使用します。
</para>
<para>
<function>bcsqrt</function>も参照下さい。
</para>
</refsect1>
</refentry>
<refentry id="function.bcscale">
<refnamediv>
<refname>bcscale</refname>
<refpurpose>
すべての BC 演算関数におけるデフォルトのスケール設定
</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcscale</methodname>
<methodparam><type>int</type><parameter>scale</parameter></methodparam>
</methodsynopsis>
<para>
この関数は、後続のすべての BC 演算関数において、明示的に
<parameter>scale</parameter> パラメータが指定されない場合の
スケール(結果の精度、小数点以下の桁数) のデフォルト値を設定します。
</para>
</refsect1>
</refentry>
<refentry id="function.bcsqrt">
<refnamediv>
<refname>bcsqrt</refname>
<refpurpose>任意精度数値の平方根を得ます</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcsqrt</methodname>
<methodparam><type>string</type><parameter>operand</parameter></methodparam>
<methodparam><type>int</type><parameter>
<replaceable><optional>scale</optional></replaceable>
</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>operand</parameter> の平方根を返します。
オプションの <parameter>scale</parameter> パラメータは、結果における
小数点以下の桁数を指定するために使用します。
</para>
<para>
<function>bcpow</function>も参照下さい。
</para>
</refsect1>
</refentry>
<refentry id="function.bcsub">
<refnamediv>
<refname>bcsub</refname>
<refpurpose>任意精度数値による減算</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>string</type><methodname>bcsub</methodname>
<methodparam><type>string</type><parameter>left operand</parameter></methodparam>
<methodparam><type>string</type><parameter>right operand</parameter></methodparam>
<methodparam><type>int</type><parameter>
<replaceable><optional>scale</optional></replaceable>
</parameter></methodparam>
</methodsynopsis>
<para>
<parameter>right operand</parameter> から
<parameter>left operand</parameter> を引いて、その結果を文字列で返します。
オプションの <parameter>scale</parameter> パラメータは、結果における
小数点以下の桁数を指定するために使用します。
</para>
<para>
<function>bcadd</function>も参照下さい。
</para>
</refsect1>
</refentry>
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->
|