相关疑难解决方法(0)

摆脱图中标题中的"图1"

我有一个想要他的名字的人物Step 2 of 3: Simulation Plot Window,但它的名字是:figure 2: Step 2 of 3: Simulation Plot Window.

如何将他的名字改为我想要的名字?

我不知道是否有必要,但在我写的代码的开头:

hFig = figure('Name','window 1','Visible','Off');
Run Code Online (Sandbox Code Playgroud)

为了我的代码结束,我写道:

hFig = figure('Name','Step 2 of 3: Simulation Plot Window','Menubar','none', 'Resize','off', ...
    'WindowStyle','modal', 'Position',[300 300 1150 600]);
Run Code Online (Sandbox Code Playgroud)

matlab matlab-figure

15
推荐指数
1
解决办法
2万
查看次数

设置窗口/图片标题

我有:

img = imread('pic.jpg','jpg');
r = img(:,:,1);
g = img(:,:,2);
b = img(:,:,3);

figure, imshow(r);
figure, imshow(g);
figure, imshow(b);
Run Code Online (Sandbox Code Playgroud)

如何在每张图片上设置标题?

matlab image title

11
推荐指数
1
解决办法
2万
查看次数

标签 统计

matlab ×2

image ×1

matlab-figure ×1

title ×1