MATLAB - 设置标题

时间:2014-03-03 19:38:04

标签: matlab

是从这种类型中获取字符串的任何方法吗?:

我想从这段代码中设置标题:

f = inline('(x-3).^2 - 1');

和标题:

figure(1) ... title(func2str(f)) ...

是否可以直接从inline设置标题?

1 个答案:

答案 0 :(得分:0)

这是通过捕获图形句柄并从中编辑标题来完成的。

fg_title = 'my figure title';
fg = figure; 
set(fg, 'name', fg_title); //set the figure title

figure 1文字仍会在标题栏中预设,如果您要将其删除,只需停用编号标题:

set fg, 'NumberTitle', 'off'); //disable numbered title