MATLAB: Can matlab display (plot3, surf, slice, etc…) with dicom LPR convention

.rascoordinatesdicomlpsMATLABplot3slicesurf

If patient is in supine position (face up), feet first, the dicom coordinate is LPS, X+ is to the left, Y+ points down and Z+ to us.
The view angle can be changed but it's hard to let Y+ to point down and Z+ to point out.

Best Answer

Would that possibly be
set(gca, 'XDir', 'reverse', 'YDir', 'reverse')
Related Question