Forum und email

gmp_hamdist

(PHP 4 >= 4.0.4, PHP 5)

gmp_hamdist — ハミング距離

説明

int gmp_hamdist ( resource $a , resource $b )

ab の間のハミング距離を返します。オペランドは共に非負とする必要があります。

パラメータ

a

It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.

正の数である必要があります。

b

It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.

正の数である必要があります。

返り値

A GMP number resource.

Example#1 gmp_hamdist() の例

<?php
$ham1 
gmp_init("1001010011"2);
$ham2 gmp_init("1011111100"2);
echo 
gmp_hamdist($ham1$ham2) . "\n";

/* ハミング距離は、以下と等しくなります */
echo gmp_popcount(gmp_xor($ham1$ham2)) . "\n";
?>

上の例の出力は以下となります。

6
6