/
Bruker DTI - create dti.txt in MATLAB
Bruker DTI - create dti.txt in MATLAB
Start with the method file (see Bruker Files )
Copy the directions
Paste into Notepad and save as text file
Include extension, so “D.txt”
In MATLAB, “Import Data” and select file
Check “Space” under Column delimiters
Change “Output Type” to “Numeric Matrix”
Import (by default all columns should be selected)
Variable will take name of file (e.g., “D”)
In MATLAB Command Window, rearrange the imported variable into rows of x/y/z
% Transpose
D = D';
% Get rid of NaN's at end
D(isnan(D)) = [];
% Reshape into x/y/z (columns)
D = reshape(D,3,[]);
% Flip so xyz are in rows
D = D';
Copy directions
Paste into Notepad and save as text file *e.g., “D.txt”)
Import
, multiple selections available,
Related content
AD: Distortion Correction
AD: Distortion Correction
More like this
AD: Preclinical Preprocessing
AD: Preclinical Preprocessing
More like this
AD: MP3 Conversion of Raw Data
AD: MP3 Conversion of Raw Data
More like this
Additional resources
Additional resources
More like this
AD: File/Folder Setup and Preparation for Preprocessing
AD: File/Folder Setup and Preparation for Preprocessing
More like this
09 ECG
09 ECG
More like this