Skip to content

Commit

Permalink
removed superfluous comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gertingold committed Aug 26, 2013
1 parent 38ceae1 commit 27ff52d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions scipy/special/specfun/specfun.f
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,6 @@ SUBROUTINE CLPMN(MM,M,N,X,Y,CPM,CPD)
20 CONTINUE
RETURN
ENDIF
C LS=1
C IF (CDABS(Z).GT.1.0D0) LS=-1
C ZQ=CDSQRT(LS*(1.0D0-Z*Z))
C ZS=LS*(1.0D0-Z*Z)
ZQ=CDSQRT(Z*Z-1.0D0)
ZS=(Z*Z-1.0D0)
DO 25 I=1,M
Expand All @@ -287,7 +283,6 @@ SUBROUTINE CLPMN(MM,M,N,X,Y,CPM,CPD)
CPD(0,0)=(0.0D0,0.0D0)
DO 40 J=1,N
C DLMF 14.10.5
C 40 CPD(0,J)=LS*J*(CPM(0,J-1)-Z*CPM(0,J))/ZS
40 CPD(0,J)=J*(Z*CPM(0,J)-CPM(0,J-1))/ZS
DO 45 I=1,M
DO 45 J=I,N
Expand Down

0 comments on commit 27ff52d

Please sign in to comment.