/ concept-collection / seqlab
Sign in
concept-collection / seqlab
seqlab / src / engine / pulseq / +mr / +aux / +rotmat / y.m
7 lines · 158 BBlameHistoryRaw
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 0 s; 0 1 0; -s 0 c];
6end
7
moveopenescclose