mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
Increase size of working array in lorentzian.f90.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6547 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
aeda7b70b3
commit
f6d902d187
@ -10,9 +10,9 @@ subroutine lorentzian(y,npts,a)
|
||||
real y(npts)
|
||||
real a(4)
|
||||
real deltaa(4)
|
||||
real x(1000)
|
||||
real x(2000)
|
||||
|
||||
if(npts.gt.1000) stop 'Error in lorentzian'
|
||||
if(npts.gt.2000) stop 'Error in lorentzian'
|
||||
|
||||
a=0.
|
||||
df=12000.0/8192.0 !df = 1.465 Hz
|
||||
|
Loading…
Reference in New Issue
Block a user