Kither
03-20-2011, 12:44 PM
Hi all.
I'm using the subroutine ratlsq to find out the chebyshev rational approximation coefficients of exp(-x) (degree m=k=4 until 30).
The main program is very easy...just call the subroutine ratlsq.
I use the subroutine which are available on Recipes f90. The compiling goes well but when i try to run the program, it fails with these error.
I hope someone can help me because, this error is driving me crazy.
1)Compiling with:
-g95 -o main.f90 pythag_dp.f90 nr.f90 nrtype.f90 nrutil.f90 ratlsq.f90 ratval_v.f90 svbksb_dp.f90 svdcmp_dp.f90
when i run the program, the error is :
Exception: unknown exception 0xC000001E
At line 30 of file ratlsq.f90
(line 30 is: xs(npth:npt)=b-(b-a)*sin(theta*arth(npt-npth,-1,npt-npth+1))**2)
2) compiling with:
-g95 -ftrace=frame -o main.f90 pythag_dp.f90 nr.f90 nrtype.f90 nrutil.f90 ratlsq.f90 ratval_v.f90 svbksb_dp.f90 svdcmp_dp.f90
when i run the program, the error is :
Exception: unknown exception 0xC000001E
Traceback: (Innermost first)
At line 31 of file ratlsq.f90
(line 31 is: fs=func(xs))
3)compiling with:
-g95 -ftrace=full -o main.f90 pythag_dp.f90 nr.f90 nrtype.f90 nrutil.f90 ratlsq.f90 ratval_v.f90 svbksb_dp.f90 svdcmp_dp.f90
when i run the program, the error is :
Exception: unknown exception 0xC000001E
Traceback: (Innermost first)
At line 31 of file ratlsq.f90
(line 31 is: fs=func(xs))
Thanks a lot in advance.
Andrea
I'm using the subroutine ratlsq to find out the chebyshev rational approximation coefficients of exp(-x) (degree m=k=4 until 30).
The main program is very easy...just call the subroutine ratlsq.
I use the subroutine which are available on Recipes f90. The compiling goes well but when i try to run the program, it fails with these error.
I hope someone can help me because, this error is driving me crazy.
1)Compiling with:
-g95 -o main.f90 pythag_dp.f90 nr.f90 nrtype.f90 nrutil.f90 ratlsq.f90 ratval_v.f90 svbksb_dp.f90 svdcmp_dp.f90
when i run the program, the error is :
Exception: unknown exception 0xC000001E
At line 30 of file ratlsq.f90
(line 30 is: xs(npth:npt)=b-(b-a)*sin(theta*arth(npt-npth,-1,npt-npth+1))**2)
2) compiling with:
-g95 -ftrace=frame -o main.f90 pythag_dp.f90 nr.f90 nrtype.f90 nrutil.f90 ratlsq.f90 ratval_v.f90 svbksb_dp.f90 svdcmp_dp.f90
when i run the program, the error is :
Exception: unknown exception 0xC000001E
Traceback: (Innermost first)
At line 31 of file ratlsq.f90
(line 31 is: fs=func(xs))
3)compiling with:
-g95 -ftrace=full -o main.f90 pythag_dp.f90 nr.f90 nrtype.f90 nrutil.f90 ratlsq.f90 ratval_v.f90 svbksb_dp.f90 svdcmp_dp.f90
when i run the program, the error is :
Exception: unknown exception 0xC000001E
Traceback: (Innermost first)
At line 31 of file ratlsq.f90
(line 31 is: fs=func(xs))
Thanks a lot in advance.
Andrea