Es gibt zwei Möglichkeiten, um den Titel eines Matlab-Fensters zu ändern.
Ändern Sie den Titel des Befehlsfensters
Dies geschieht durch folgendes Skript ( Quelle ):
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
Ändern Sie die Name-Eigenschaft des Figurenfensters
Von diesem Beitrag :
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')
Wenn Sie anrufen
imshow(g,[])
, wird das Bild automatisch auf min / max skaliert.