mirror of
https://github.com/macintoshplus/doc-fr.git
synced 2026-04-27 10:46:12 +02:00
850613d83a
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@352055 c90b9560-bf6c-de11-be94-00142212c4b1
116 lines
3.3 KiB
XML
116 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 039ab719e695141ee54409d26ad828337ec31d6e Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://docbook.org/ns/docbook" xml:id="function.gmp-gcdext">
|
|
<refnamediv>
|
|
<refname>gmp_gcdext</refname>
|
|
<refpurpose>PGCD étendu</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>array</type><methodname>gmp_gcdext</methodname>
|
|
<methodparam><type class="union"><type>GMP</type><type>int</type><type>string</type></type><parameter>num1</parameter></methodparam>
|
|
<methodparam><type class="union"><type>GMP</type><type>int</type><type>string</type></type><parameter>num2</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Calcule les entiers g, s, et t, tels que
|
|
<literal>a*s + b*t = g = gcd(a,b)</literal>, où gcd est le pgcd de
|
|
<parameter>num1</parameter> et <parameter>num2</parameter>. La fonction
|
|
retourne un tableau avec les index g, s et t.
|
|
</para>
|
|
<para>
|
|
Cette fonction peut être utilisée pour résoudre des équations diophantines
|
|
linéaires à deux variables. Ces équations n'ont qu'une seule solution
|
|
entière, et elles sont de la forme : <literal>a*x + b*y = c</literal>.
|
|
Pour plus d'informations, voyez les pages
|
|
<link xlink:href="&url.diophantine-equation;">"Diophantine Equation"</link>
|
|
sur MathWorld, en anglais.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>num1</parameter></term>
|
|
<listitem>
|
|
&gmp.parameter;
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>num2</parameter></term>
|
|
<listitem>
|
|
&gmp.parameter;
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Un tableau de nombres GMP.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Résolution d'une équation Diophantine linéaire</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// Résolution de l'équation a*s + b*t = g
|
|
// où a = 12, b = 21, g = gcd(12, 21) = 3
|
|
$a = gmp_init(12);
|
|
$b = gmp_init(21);
|
|
$g = gmp_gcd($a, $b);
|
|
$r = gmp_gcdext($a, $b);
|
|
|
|
$check_gcd = (gmp_strval($g) == gmp_strval($r['g']));
|
|
$eq_res = gmp_add(gmp_mul($a, $r['s']), gmp_mul($b, $r['t']));
|
|
$check_res = (gmp_strval($g) == gmp_strval($eq_res));
|
|
|
|
if ($check_gcd && $check_res) {
|
|
$fmt = "Solution: %d*%d + %d*%d = %d\n";
|
|
printf($fmt, gmp_strval($a), gmp_strval($r['s']), gmp_strval($b),
|
|
gmp_strval($r['t']), gmp_strval($r['g']));
|
|
} else {
|
|
echo "Erreur lors de la résolution de l'équation\n";
|
|
}
|
|
|
|
// Résultat : Solution : 12*2 + 21*-1 = 3
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
<!-- 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:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|