reverse-shooting

Matlab scripts for reverse shooting
Log | Files | Refs | README

latext.m (156B)


      1 function []=latext(x,y,str);
      2 
      3 % function []=latext(x,y,str);
      4 %
      5 %  calls the text command with the latex interpreter
      6 
      7 text(x,y,str,'Interpreter','latex');
      8 
      9