Aqui estão duas possibilidades para alterar o título de uma janela do Matlab.
Altere o título da janela de comando
Isso é feito pelo seguinte script ( source ):
function idetitle(Title)
%IDETITLE Set Window title of the Matlab IDE
%
% Examples:
% idetitle('Matlab - Foo model')
% idetitle(sprintf('Matlab - some big model - #%d', feature('getpid')))
win = appwin();
if ~isempty(win)
win.setTitle(Title);
end
end
Altere a propriedade Name da janela de figura
De este post :
img = imread('pic.jpg','jpg'); r = img(:,:,1); g = img(:,:,2); b = img(:,:,3); figure('Name','this is the red channel'), imshow(r); figure('Name','this is the green channel','NumberTitle','off'), imshow(g); title(gca,'you can also place a title like this') fh = figure; imshow(b); set(fh,'Name','this is the blue channel')
Also, if you call
imshow(g,[])
, it will auto-scale the image to min/max.