Anglea
- 89
- 0
I TRIED THIS CODEmathmate said:Try it with the corrected parameter values and post what you see!
PHP:
mplicit none
integer i,j,n,m,mp,np
parameter (mp = 450,np = 450)
REAL*8 x(mp,np),v(np,np),w(np)
c
write(*,*) 'Enter the arrays elements'
read(*,*) m,n
do i=1, m
do j=1, n
read(*,*) x(i,j)
end do
end do
call svdcmp(x,m,n,mp,np,w,v)
do i=1, n
print*, w(i)
print*, v(i,i)
end do
end
c
c
c-----------------------------------
include 'SVDCMP.F'[PHP]
actually I have tried already and I've got this error
[PHP]PAUSE no convergence in svdcmp statement executed
To resume execution, type go. Other input will terminate the job.
Last edited:
