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
|
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 rootgp(ngp,gpp,nbeta,beta,ierr,w)
c
c
c Entree : - gpp. est le tableau contenant les coeff du polynome
c gpp(z) et dont le degre est ngp.
c - ngp. est le degre de gp(z).
c - w tableau de travail de taille 3*ngp+1
c Sortie : - beta. est le tableau contenant les racines du
c polynome gpp(z) reelles comprises entre -2 et 2.
c - nbeta. est le nombre de ces racines.
c
c!
implicit double precision (a-h,o-z)
dimension gpp(ngp+1),beta(*),w(*)
logical fail
integer ierr
common /arl2c/ info,i1
c
c decoupage du tableau de travail
c
kpol=1
kzr=kpol+ngp+1
kzi=kzr+ngp
kfree=kzi+ngp
c
call dcopy(ngp+1,gpp,-1,w(kpol),1)
call rpoly(w(kpol),ngp,w(kzr),w(kzi),fail)
nbeta=0
do 110 j=0,ngp-1
if (w(kzi+j).eq.0.0d+0.and.abs(w(kzr+j)).le.2.0d+0) then
nbeta=nbeta+1
beta(nbeta)=w(kzr+j)
endif
110 continue
if (nbeta.eq.0) then
c if(info.ge.2) then
c print*,' Problem : Cannot find a possible value for Beta'
c print*,' Stopping execution immediately'
c endif
ierr=4
return
endif
return
end
|