reverse-shooting

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

ctitle.m (227B)


      1 function []=ctitle(str);
      2 % ctitle.m  7/8/04
      3 %
      4 %  For displaying titles before using cshow.
      5 %  Adds a bar underneath the titles and space before titles.
      6 
      7 disp ' '; disp ' ';
      8 disp(str);
      9 disp(char(kron('-',ones(1,length(str)))));