class WaveVector { int[] Re; int[] Im; int npts; public WaveVector() { this(256); } public WaveVector(int npts) { this.npts = npts; Re = new int[npts]; Im = new int[npts]; for(int i = 0; i