tutorials science

NMRLab 1D NMR processing (MATLAB)

This notebook uses a subset of the available processing features in NMRLab (+Metabolab) to process 1D NMR spectra. The output is saved as a CSV file that can be imported into pandas, PLS_Toolbox or any other package for subsequent analysis.

To use this workbook you will need an installation of MATLAB and a license for the NMRLab software (available free). To use segmental alignment (recommended) you will also need to install the icoshift package for MATLAB.

For more information on NMRLab/Metabolab see the following references:

Configure variables

Edit paths before for the data to process. The path should be the folder containing the experiment folders (1,2,3,4 etc.).

python
base_path = '/Users/mxf793/Data/THPNH/Extract/1d'
output_file = '/Users/mxf793/Data/THPNH/Extract/1d/processed.csv'
# include_match = []

Setting up widget interaction

We define a quick callback to pass widget values into global variables, allowing us to then pass these into %%matlab magic cells. We also define all the default config options used by widgets later, changes overwrite these defaults so widgets will not reset.

python
from IPython.html.widgets import interact, interactive, fixed
from IPython.html import widgets

def widget_callback(**kwargs):
    for k,v in kwargs.items():
        globals()[k] = v

spa_ref_spec_no=1
spa_max_shift=22

bc_algo=1
bc_npts=20
bc_tau=20
bc_par=6
bc_bas_noise=0

rea_ref_spec_no=1
rea_max_shift=22
rea_algo=1

bi_bin_size=0.05
Over 10,000 developers have bought Create GUI Applications with Python & Qt!
Create GUI Applications with Python & Qt6
More info Get the book

Downloadable ebook (PDF, ePub) & Complete Source code

To support developers in [[ countryRegion ]] I give a [[ localizedDiscount[couponCode] ]]% discount on all books and courses.

[[ activeDiscount.description ]] I'm giving a [[ activeDiscount.discount ]]% discount on all books and courses.

Set up MATLAB connection

First we start up an instance of MATLAB server and connect to it - this will take a few moments. If it succeeds you will get a message returned MATLAB started and connected!.

python
%load_ext pymatbridge
python
Starting MATLAB on http://localhost:50397
 visit http://localhost:50397/exit.m to shut down same
....MATLAB started and connected!

Initialise NMRLab and global variables

We initialise MATLAB paths, and call the init to set up the environment for subsequent calls. We also pass in a number of variables from the Python environment, including the base_path for the data files, and a list of folders condtaining data ('fids') for processing.

python
%%matlab
NMRPAR.CURSET=[1,1];
nmrlab_init;
nmrlab_globals;
python
{Warning: The value of local variables may have been changed to match the
         globals.  Future versions of MATLAB will require that you declare
         a variable to be global before you use that variable.}
> In /Users/mxf793/MATLAB/Toolbox/nmrlab/nmrlab_init.p>nmrlab_init at 14
  In web_eval at 44
  In webserver at 241
*********************************************
*****    Welcome to  NMRLAB 3.5.0.0        ****
*********************************************

Setting global variables.
This computer is a MACI64
0.635
Running MATLAB version 7.1.
New swappath: /private/tmp/mxf793/15
Defining Paths for NMRLAB ...
Loading NMRDAT_EMPTY.

*********************************************

WAVLABPATH /Applications/MATLAB_R2011a_Student.app/wavelab does not exist.
The default path is MATLABHOME /wavelab
If you have installed wavelab elsewhere, set the WAVELETPATH
variable in nmrlab.m
WaveLab v .802 Setup Complete

png

python
import os

base_path = '/Users/mxf793/Data/THPNH/Extract/1d'
exclude = ['99999','9999','999']
folders = set(os.path.basename(folder) for folder, subfolders, files in os.walk(base_path) for file_ in files if file_=='fid' and os.path.basename(folder) not in exclude)
folders = list(folders)

# Sort folders (numerically)
folders.sort(key=int)

expfolders = folders
pathname_separator ='/'
nspc = len(expfolders)
python
%%matlab -i base_path,output_file,pathname_separator,expfolders
expfolders = str2cell(expfolders)
python
expfolders =
    '87'
    '89'
    '91'
    '93'
    '95'
    '97'
    '99'
    '101'
    '103'
    '105'
    '107'
    '109'
    '111'
    '113'
    '115'
    '117'
    '119'
python
%%matlab
%Dim 1
global h_DR

NMRPAR = struct();
NMRPAR.PATHNAMESEPARATOR = pathname_separator;

procSet = 1;
if(ishandle(h_DR))
    if(isfield(handles,'t_procSet'))
        set(handles.t_procSet,'visible','on');
        procSet = 1;
    end
end
pathBase{1} = base_path;
dataSet = [1 ];
dataType = 'B';
NMRPAR.CURSET = [dataSet(1),1];
python
%%matlab
expName = [];
for k = 1:length(expfolders)
    expName{1}{k} = expfolders{k};
end

Loading spectra FIDs

The next step is to load all the spectra FIDs into MATLAB for processing. This may take a moment.

python
%%matlab
expCounter = ones(length(dataSet),1);
for k = 1:length(expName)
    dataSet2 = find(dataSet(k)==dataSet);
    for l = 1:length(expName{k})
        pathname = [pathBase{k} NMRPAR.PATHNAMESEPARATOR expName{k}{l} NMRPAR.PATHNAMESEPARATOR];
        re1d2(pathname,dataSet(k),expCounter(k),pathname,dataType);
        expCounter(dataSet2) = expCounter(dataSet2) + 1;
        fclose('all');
    end
end
python
re(/Users/mxf793/Data/THPNH/Extract/1d/87/,1,1,/Users/mxf793/Data/THPNH/Extract/1d/87/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  D6 - 344}
re(/Users/mxf793/Data/THPNH/Extract/1d/89/,1,2,/Users/mxf793/Data/THPNH/Extract/1d/89/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  E6 - 345}
tline2 =
TopShimResult: 0.36
re(/Users/mxf793/Data/THPNH/Extract/1d/91/,1,3,/Users/mxf793/Data/THPNH/Extract/1d/91/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  F6 - 346}
tline2 =
TopShimResult: 0.29
re(/Users/mxf793/Data/THPNH/Extract/1d/93/,1,4,/Users/mxf793/Data/THPNH/Extract/1d/93/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  G6 - 347}
tline2 =
TopShimResult: 0.33
re(/Users/mxf793/Data/THPNH/Extract/1d/95/,1,5,/Users/mxf793/Data/THPNH/Extract/1d/95/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  H6 - 348}
tline2 =
TopShimResult: 0.39
re(/Users/mxf793/Data/THPNH/Extract/1d/97/,1,6,/Users/mxf793/Data/THPNH/Extract/1d/97/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  A7 - 349}
tline2 =
TopShimResult: 0.37
re(/Users/mxf793/Data/THPNH/Extract/1d/99/,1,7,/Users/mxf793/Data/THPNH/Extract/1d/99/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  B7 - 350}
tline2 =
TopShimResult: 0.38
re(/Users/mxf793/Data/THPNH/Extract/1d/101/,1,8,/Users/mxf793/Data/THPNH/Extract/1d/101/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  C7 - 351}
tline2 =
TopShimResult: 0.33
re(/Users/mxf793/Data/THPNH/Extract/1d/103/,1,9,/Users/mxf793/Data/THPNH/Extract/1d/103/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  D7 - 352}
tline2 =
TopShimResult: 0.37
re(/Users/mxf793/Data/THPNH/Extract/1d/105/,1,10,/Users/mxf793/Data/THPNH/Extract/1d/105/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  E7 - 353}
tline2 =
TopShimResult: 0.35
re(/Users/mxf793/Data/THPNH/Extract/1d/107/,1,11,/Users/mxf793/Data/THPNH/Extract/1d/107/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  F7 - 354}
tline2 =
TopShimResult: 0.39
re(/Users/mxf793/Data/THPNH/Extract/1d/109/,1,12,/Users/mxf793/Data/THPNH/Extract/1d/109/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  G7 - 355}
tline2 =
TopShimResult: 0.49
re(/Users/mxf793/Data/THPNH/Extract/1d/111/,1,13,/Users/mxf793/Data/THPNH/Extract/1d/111/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  H7 - 356}
tline2 =
TopShimResult: 0.35
re(/Users/mxf793/Data/THPNH/Extract/1d/113/,1,14,/Users/mxf793/Data/THPNH/Extract/1d/113/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  A8 - 357}
re(/Users/mxf793/Data/THPNH/Extract/1d/115/,1,15,/Users/mxf793/Data/THPNH/Extract/1d/115/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  B8 - 358}
tline2 =
TopShimResult: 0.63
re(/Users/mxf793/Data/THPNH/Extract/1d/117/,1,16,/Users/mxf793/Data/THPNH/Extract/1d/117/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  C8 - 359}
tline2 =
TopShimResult: 0.52
re(/Users/mxf793/Data/THPNH/Extract/1d/119/,1,17,/Users/mxf793/Data/THPNH/Extract/1d/119/,B)
0D dataset identified.
Reading acqus.
ans =
     0
ans =
     0
Parameters from BRUKER acqus files:

Update PROC and DISP
TD1 = 32768
SFO1 = 600.1328
SWH1 = 7194.2446
Reading FID ...
Real->complex conversion.
tline2 =

tline2 =
sy0207noesy H2O+D2O /opt/topspin3.0/data/youngsp/nmr youngsp {3  D8 - 360}
tline2 =
TopShimResult: 0.33

Importing Spectra and Pre-processing

The next step processes the input data automatically. Note that this will take quite some time if you're running with a large number of spectra at the same time. Run the cell and wait. Once the processing is completed a plot figure will be shown of all imported spectra.

python
%%matlab
phc0 = 0;
phc1 = 0;
dataSet2a = unique(dataSet);
for l = 1:length(dataSet2a)
    dataSet2 = dataSet2a(l);
    nspc = NMRDAT(dataSet2,1).ACQUS(1).NE;
    for k = 1:nspc
        fid_npts                        = length(NMRDAT(dataSet2,k).SER);
        zf                              = 2*2^nextpow2(fid_npts);
        swh                             = NMRDAT(dataSet2,k).ACQUS(1).SW_h;
        sfo1                            = NMRDAT(dataSet2,k).ACQUS(1).SFO1;
        NMRPAR.CURSET                   = [dataSet2,k];
        NMRDAT(dataSet2,k).ACQUS(1).DIM  = 1;
        NMRDAT(dataSet2,k).PROC(1).GIBBS = 1;
        NMRDAT(dataSet2,k).PROC(1).WDWF  = 'EM';
        NMRDAT(dataSet2,k).PROC(1).LB    = 0.3;
        NMRDAT(dataSet2,k).PROC(1).BC    = 32;
        NMRDAT(dataSet2,k).PROC(1).PH0   = phc0;
        NMRDAT(dataSet2,k).PROC(1).PH1   = phc1;
        NMRDAT(dataSet2,k).PROC(1).SMO   = 2;
        NMRDAT(dataSet2,k).PROC(1).SOL   = [32 32 0];
        NMRDAT(dataSet2,k).PROC(1).AUTOPHASE    = 1;
        NMRDAT(dataSet2,k).PROC(1).ZF    = zf;
        NMRDAT(dataSet2,k).PROC(1).REF   = [4.7458, zf/2, zf, swh, sfo1];
        NMRDAT(dataSet2,k).DISP.ax_typ   = 1;
        NMRDAT(dataSet2,k).DISP.PLOT     = 0;
        xfb(1,1);
        ref_tmsp;
        apk4;
    end
end
NMRPAR.CURSET = [dataSet(1),1];

% Set up some global vars
ppm = linspace(11,-1,32768);
nppm = size(ppm,2)
spc = [];

pppm = ppm;
pspc = spc;

% Output a figure showing all plots
clf;
hold on;

for k = 1:nspc
    spci = real( NMRDAT(1,k).MAT );
    spc = [spc; spci'];
    plot(ppm, spci);
end

spc1 = spc';

set(gca,'XDir','Reverse');

python
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.3581
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 444 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 444 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 431.928 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 432.928 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 92.5369 -21.7569 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 80.1763 -8.0423 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,1).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 80.1763 -8.0423 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    1.8321
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 109 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 109 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 77.77 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 78.97 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 165.1121 -95.6301 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 78.97 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 106.7156 -30.8016 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,2).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 106.7156 -30.8016 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    1.9090
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 67 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 67 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 61.47 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 63.07 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 63.07 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 67.7947 -5.2467 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,3).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 67.7947 -5.2467 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.0172
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 75 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 75 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 69.312 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 70.312 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 81.6118 -12.5478 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 169.2485 -109.8635 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 81.6118 -12.5478 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,4).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 81.6118 -12.5478 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    1.7971
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 91 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 91 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 74.928 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 75.728 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.2839 -20.6039 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 270.909 -216.723 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.2839 -20.6039 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,5).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.2839 -20.6039 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.0382
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 88 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 88 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 83.596 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 84.796 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 95.7437 -12.1597 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 277.3022 -213.8182 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 95.7437 -12.1597 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,6).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 95.7437 -12.1597 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    1.8126
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 82 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 82 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 84.638 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 85.838 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 85.838 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 235.0558 -165.7318 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 85.838 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,7).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 85.838 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.5376
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 429 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 429 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 432.508 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 433.508 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 433.508 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 165.3203 -101.9283 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 433.508 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,8).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 433.508 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    1.8255
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 71 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 71 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 71.328 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 72.328 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 72.328 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 253.4552 -201.2272 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 72.328 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,9).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 72.328 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.2389
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 69 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 69 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 80.132 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 81.332 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.9834 -15.1694 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 213.8976 -147.3066 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.9834 -15.1694 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,10).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.9834 -15.1694 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.0196
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 79 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 79 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 79.508 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 80.708 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 96.8476 -17.9276 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 241.1291 -178.1931 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 96.8476 -17.9276 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,11).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 96.8476 -17.9276 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    3.1141
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 434 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 434 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 429.902 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 431.102 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 82.2845 -12.4125 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 204.9921 -148.6171 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 82.2845 -12.4125 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,12).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 82.2845 -12.4125 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    1.7759
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 71 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 71 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 59.218 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 60.418 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 60.418 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 92.2217 -35.3007 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 60.418 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,13).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 60.418 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    1.7551
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 434 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 434 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 421.032 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 421.832 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 421.032 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 77.6853 -18.4863 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 78.4757 -19.3637 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,14).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 78.4757 -19.3637 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.4110
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 445 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 445 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 442.384 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 442.784 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 442.384 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 97.8035 -17.1225 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 191.2078 -120.8428 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 97.8035 -17.1225 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,15).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 97.8035 -17.1225 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.0406
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 89 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 89 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 82.416 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 82.816 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.2529 -12.7009 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 221.6779 -154.2089 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.2529 -12.7009 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,16).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 94.2529 -12.7009 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 0 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
tEnd =
    2.7352
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 436 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 436 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
range =
    0.4000
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 442.222 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 444.022 0 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 96.4833 -13.8343 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 220.3428 -151.3408 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
Avance 3 data.
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 96.4833 -13.8343 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
==============================================
XFB - Two-dimensional data processing.
XFB will be run for data set (1,17).
Avance 3 data.
SOL in DIM 1. SOL(32,32,0,76).
BC(32).
DIM 1 window function: EM, 0.3, 7194.2446, 76
GIBBS in DIM 1
ZF 32768 in DIM 1.
Avance 3 data.
DFT in DIM 1
Phase 96.4833 -13.8343 in DIM 1
Matrix transposed.
Processing DIM 1 done.
----------------------------------------------
You may want to delete your SER file now.
nppm =
       32768

png

Create GUI Applications with Python & Qt5 by Martin Fitzpatrick — (PyQt5 Edition) The hands-on guide to making apps with Python — Over 10,000 copies sold!

More info Get the book

Processing

To display the result of each step we define a simple MATLAB plot of mean and median spectra. This is usually enough to spot major issues in the spectra and see the improvements during processing. The output is captured and displayed using the ImageOut class we defined earlier.

The plot below shows the starting state of the spectra before processing.

python
%matlab pspc = spc1; pppm = ppm; spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');

png

Spectra alignment (TMSP)

We next apply an alignment on the TMSP standard to account for variation in the position of peaks arising during acquisition. Note that this does not account for differences in peak positions arising from pH (where peaks shift independently), this will be accounted for later using segmental shift (icoshift algorithm).

python
i = interact(widget_callback,
         spa_ref_spec_no=widgets.IntSliderWidget(min=1, max=nspc, step=1, value=spa_ref_spec_no, description="Reference spc:"),
         spa_max_shift=widgets.IntSliderWidget(min=1, max=100, step=1, value=spa_max_shift, description="Max shift"),
         )
python
%%matlab -i spa_ref_spec_no,spa_max_shift
[spc2, nul] = spcalign_tmsp(spc1, 1, 22, [150:155], 1);

pspc = spc2; pppm = ppm;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');

png

Baseline correction

Remove variability in the baseline using one of the pre-defined NMRLab methods. The defaults here use a spline baseline of 20 points along the spectra.

python
i = interact(widget_callback,
         bc_algo=widgets.DropdownWidget(values=[1,2,3,4,5,6,7,8], value=bc_algo, description="Algorithm"),
         bc_npts=widgets.IntSliderWidget(min=1, max=50, step=1, value=bc_npts, description="Reference spc:"),

         bc_tau=widgets.IntSliderWidget(min=1, max=50, step=1, value=bc_tau, description="Tau:"),
         bc_par=widgets.IntSliderWidget(min=1, max=10, step=1, value=bc_par, description="Poly order"),
         bc_bas_noise=widgets.FloatSliderWidget(min=1, max=10, step=0.01, value=bc_bas_noise, description="Baseline noise"),
         )
python
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)

<ipython-input-1-cb62b35ad0d7> in <module>()
----> 1 i = interact(widget_callback,
      2          bc_algo=widgets.DropdownWidget(values=[1,2,3,4,5,6,7,8], value=bc_algo, description="Algorithm"),
      3          bc_npts=widgets.IntSliderWidget(min=1, max=50, step=1, value=bc_npts, description="Reference spc:"),
      4
      5          bc_tau=widgets.IntSliderWidget(min=1, max=50, step=1, value=bc_tau, description="Tau:"),


NameError: name 'interact' is not defined
python
%%matlab -i bc_algo,bc_npts,bc_tau,bc_par,bc_bas_noise
[spc3, baseline, is_baseline] = baselinenl(spc2, bc_npts, double(bc_tau), double(bc_par), 0, bc_algo, bc_bas_noise);

spc3 = reshape(spc3, size(ppm,2), nspc);

pspc = spc3; pppm = ppm;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');

png

Scale spectra (TMSP)

python
%%matlab
spc4 = spcscale(spc3,1,1);

pspc = spc4; pppm = ppm;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');

png

Create GUI Applications with Python & Qt6 by Martin Fitzpatrick — (PySide6 Edition) The hands-on guide to making apps with Python — Over 10,000 copies sold!

More info Get the book

Exclude regions (Water, TMSP, <ppm10)

We next remove regions from the spectra that are detrimental to subsequent analysis: first the water region in the middle of the spectra, then TMSP and finally <10ppm (extreme ends of spectra). These are removed so that noise variation does not interfere with scaling and multivariate analysis.

python
%%matlab -o ex_max,ex_1_end,ex_2_start,ex_2_end,ex_3_start
ex_max = size(ppm,2); ex_1_end = find(ppm<10, 1); ex_2_start = find(ppm<6, 1); ex_2_end = find(ppm<4.5, 1); ex_3_start = find(ppm<0.5, 1);
python
i = interact(widget_callback,
         # Default remove <10 ppm
         ex_1_end=widgets.FloatSliderWidget(min=1, max=int(ex_max), step=1, value=int(ex_1_end), description="Region (1) end"),
         # Default remove roughly ppm 4.5-6
         ex_2_start=widgets.FloatSliderWidget(min=1, max=int(ex_max), step=1, value=int(ex_2_start), description="Region (2) start"),
         ex_2_end=widgets.FloatSliderWidget(min=1, max=int(ex_max), step=1, value=int(ex_2_end), description="Region (2) end"),
         # Default remove TMSP
         ex_3_start=widgets.FloatSliderWidget(min=1, max=int(ex_max), step=1, value=int(ex_3_start), description="Region (3) start"),
         )
python
%%matlab -i ex_1_end,ex_2_start,ex_2_end,ex_3_start
excludes = zeros(size(ppm,2),1);
excludes(1:ex_1_end) = 1; excludes(ex_2_start:ex_2_end) = 1; excludes(ex_3_start:end) = 1;
excludes = logical(excludes);

spc5 = spcexclude(spc4,excludes,1);
ppme = spcexclude(ppm',excludes,1)';

pspc = spc5; pppm = ppme;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');

png

Realign NMR spectra

python
i = interact(widget_callback,
         rea_ref_spec_no=widgets.IntSliderWidget(min=1, max=nspc, step=1, value=rea_ref_spec_no, description="Reference spc:"),
         rea_max_shift=widgets.IntSliderWidget(min=1, max=100, step=1, value=rea_max_shift, description="Max shift"),
         rea_algo=widgets.DropdownWidget(values=[1,2], value=rea_algo, description="Algorithm"),
         )
python
%%matlab -i rea_ref_spec_no,rea_max_shift,rea_algo
spc6 = spcalign(spc5, rea_ref_spec_no, rea_max_shift, rea_algo);

pspc = spc6; pppm = ppme;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');
python
Shifts applied to spectra:
1: 0.
2: 2.
3: 6.
4: 5.
5: 4.
6: 22.
7: 11.
8: 2.
9: 22.
10: 22.
11: 22.
12: 1.
13: 1.
14: 3.
15: 5.
16: 7.
17: 2.

png

Segmental alignment

Here we use the icoshift algorithm for segmental alignment (this is the same as used internally by NMRLab, but with a simpler interface to the function to call).

python
sa_xt = 'average'
sa_intt = 'number'
sa_intn = 50
sa_shiftt = 'f'
sa_shiftn = 50


i = interact(widget_callback,
         sa_xt=widgets.DropdownWidget(values=['average','median','max','average2'], value=sa_xt, description="Target:"),

         sa_intt=widgets.DropdownWidget(values=['whole','number'], value=sa_intt, description="Interval type:"),
         sa_intn=widgets.IntSliderWidget(min=1, max=200, step=1, value=sa_intn, description="Interval number:"),

         sa_shiftt=widgets.DropdownWidget(values=['f','b','n'], value=sa_shiftt, description="Max shift type:"),
         sa_shiftn=widgets.IntSliderWidget(min=1, max=200, step=1, value=sa_shiftn, description="Max shift number:"),
         )
python
%%matlab -i sa_xt,sa_intt,sa_intn,sa_shiftt,sa_shiftn

if strcmp(sa_intt, 'number')
    sa_intt = sa_intn;
end

if strcmp(sa_shiftt, 'n')
    sa_shiftt = sa_shiftn;
end

spc7 = icoshift(sa_xt,spc6',sa_intt, sa_shiftt)';

pspc = spc7; pppm = ppme;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');
python
 Fast automatic searching for the best "n" for each interval enabled

 Co-shifting interval no. 1 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 2 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 3 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 4 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 5 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 6 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 7 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 8 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 9 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 10 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 11 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 12 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 13 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 14 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 15 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 16 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 17 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 18 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 19 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 20 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 21 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 22 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 23 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 24 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 25 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 26 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 27 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 28 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 29 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 30 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 31 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 32 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 33 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 34 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 35 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 36 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 37 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 38 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 39 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 40 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 41 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 42 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 43 of 50...
 Best shift allowed for this interval = 438

 Co-shifting interval no. 44 of 50...
 Best shift allowed for this interval = 437

 Co-shifting interval no. 45 of 50...
 Best shift allowed for this interval = 437

 Co-shifting interval no. 46 of 50...
 Best shift allowed for this interval = 437

 Co-shifting interval no. 47 of 50...
 Best shift allowed for this interval = 437

 Co-shifting interval no. 48 of 50...
 Best shift allowed for this interval = 437

 Co-shifting interval no. 49 of 50...
 Best shift allowed for this interval = 437

 Co-shifting interval no. 50 of 50...
 Best shift allowed for this interval = 386

png

Binning (Bucket spectra)

Binning reduces the size of the dataset by grouping regions of the spectra together. This speeds up subsequent analysis, and reduces the impact of small peak shifts (assuming these occur within a single bin).

python
i = interact(widget_callback,
         bi_bin_size=widgets.FloatSliderWidget(min=0.01, max=1.0, step=0.01, value=bi_bin_size, description="Bin size (ppm)"),
         )
python
%%matlab -i bi_bin_size
step_size = (max(ppme) - min(ppme)) / size(ppme,2);
points = bi_bin_size / step_size;
points = round(points / 2);
spc8 = spcbucket(spc7, points);
ppmb = linspace(max(ppme), min(ppme), size(spc8,1));

pspc = spc8; pppm = ppmb;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');
python
{Warning: 12 points left!}
> In /Users/mxf793/MATLAB/Toolbox/nmrlab/metabolab/spcbucket.p>spcbucket at 54
  In web_eval at 44
  In webserver at 241

png

Packaging Python Applications with PyInstaller by Martin Fitzpatrick — This step-by-step guide walks you through packaging your own Python applications from simple examples to complete installers and signed executables.

More info Get the book

Scale spectra (TSA/PQN)

python
%%matlab
spc9 = spcscale(spc8,1,1); % TSA by default; PQN must calculate the scaling vector manually

pspc = spc9; pppm = ppmb;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');

png

Variance stabilisation (auto/pareto/glog)

python
i = interact(widget_callback,
         glogexp=widgets.IntSliderWidget(min=1, max=10, step=1, value=4, description="glog(exp)"),
         y0=widgets.FloatSliderWidget(min=0.0, max=10.0, step=0.1, value=0.0, description="y0"),
         )
python
%%matlab -i glogexp,y0
spc10 = glogtrans(spc9, 10.0^-double(glogexp), y0 );
pspc = spc10; pppm = ppmb;
spcmedian = median(pspc, 2); spcmean = mean(pspc, 2); clf; hold on; plot(pppm, spcmedian, 'k'); plot(pppm, spcmean, 'r'); set(gca,'XDir','Reverse');

png

Export to CSV

The data resulting from the analysis is now stored in spc10 as a 2D array (variables down, samples across). We have the current ppms in a seperate variable. So we combine the (append to the left) and then output direct to a CSV file from MATLAB.

python
%%matlab
output = [ppmb', spc10]';
writecsv(output,output_file);