ファイル名:Hanken0.m

function hanken0
% 版権をFigureに組み込む

fprintf('現在アクティブになっているFigureの右隅に版権を付けます\n');
tmp0 = gca;
hanken0 = axes('Position',[0 0 1 1],'Visible','off');
text(1,0,'Copyright by Koji MIYAKAWA','HorizontalAlignment','right','VerticalAlignment','bottom','FontSize',10,'FontWeight','normal');
set(gcf,'CurrentAxes',tmp0);