mirror of
https://gitlab.tugraz.at/ibi/projects/julia-pfitzer/esmrmb-educational.git
synced 2024-11-22 01:32:24 +00:00
12 lines
No EOL
221 B
Python
12 lines
No EOL
221 B
Python
import scipy.io as sio
|
|
import matplotlib.pyplot as plt
|
|
import numpy as np
|
|
from bart import bart
|
|
|
|
# T1 dict
|
|
T1_dict = sio.loadmat('T1.mat')
|
|
|
|
rawName = 'T2_CPMG.mat'
|
|
mat_data_0=sio.loadmat(rawName)
|
|
|
|
print(mat_data_0.keys()) |