/ concept-collection / seqlab
Sign in
concept-collection / seqlab
seqlab / src / engine / pulseq / +mr / +aux / +rotmat / x.m
7 lines · 158 BBlameHistoryRaw
1function m = x(al)
2% X Rotation matrix for rotation about X to an angle al given in radians
3c = cos(al);
4s = sin(al);
5m = [1 0 0; 0 c -s; 0 s c];
6end
7
moveopenescclose