在屏幕上显示文本 - MATLAB

时间:2011-01-09 07:02:52

标签: matlab graphics text

您好
我正计划在MATLAB中进行一个简单的实验。我需要在屏幕上打印彩色文字,倒置。我找到了函数

text(0.6,0.5,'red','rotation',180,'fontsize',50,'color','k') 

但我想摆脱轴(x和y),我只想在屏幕中央显示文字..
任何想法都会得到满足 爱丽儿

2 个答案:

答案 0 :(得分:6)

figure
set(gcf,'Color', 'white')
text(0.6,0.5,'red','rotation',180,'fontsize',50,'color','r')
set(gca,'Color','white');
set(gca,'XColor','white');
set(gca,'YColor','white');

答案 1 :(得分:4)

可替换地:

figure('Color','white', 'Menu','none')
text(0.5, 0.5, 'red', 'Rotation',180, 'FontSize',50, 'Color','k', ...
    'HorizontalAlignment','Center', 'VerticalAlignment','Middle')
axis off

alt text