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
|
c Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
c Copyright (C) INRIA
c
c This file must be used under the terms of the CeCILL.
c This source file is licensed as described in the file COPYING, which
c you should have received as part of this distribution. The terms
c are also available at
c http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
subroutine lq(nq,tq,tr,tg,ng)
c!but
c cette routine calcule a partir de g(z) et q(z) le
c polynome Lq(z) defini comme le reste , tilde , de la division
c par q(z) du produit g(z) par le tilde de q(z) .
c!liste d'appel
c Entree :
c tg . tableau des coefficients de la fonction g .
c ng . degre du polynome g
c tq . tableau des coefficients du polynome q
c nq . degre du polynome q
c Sortie :
c tr . tableau [tlq,tvq]
c tlq =tr(1:nq) coefficients du polynome Lq
c tvq =tr(nq+1:nq+ng+1) coefficients du quotient vq de la
c division par q du polynome gqti .
c!
implicit double precision (a-h,o-z)
dimension tq(nq+1),tr(nq+ng+1),tg(ng+1)
c
c calcul de tg*tq~
call tild (nq,tq,tr)
call dpmul1(tg,ng,tr,nq,tr)
c
c division euclidienne de tg*tq~ par tq
call dpodiv(tr,tq,ng+nq,nq)
c
c calcul du tilde du reste sur place
do 10 j=1,int(nq/2)
temp=tr(j)
tr(j)=tr(nq+1-j)
tr(nq+1-j)=temp
10 continue
c
return
end
|