/ concept-collection / seqlab
Sign in
concept-collection / seqlab
seqlab / src / engine / pulseq / +mr / +aux / +rotmat / z.m
7 lines · 158 BCodeBlameHistory
78d04f1seqlab: write and view pulseq MRI sequences in the browserJeremy Magland 1function m = y(al)
2% Y Rotation matrix for rotation about Y to an angle al given in radians
3c = cos(al);
4s = sin(al);
5m = [c -s 0; s c 0; 0 0 1];
6end
7
moveopenescclose