Matlab Title Figure

[Solved] Matlab Title Figure | Java - Code Explorer | yomemimo.com
Question : matlab title figure

Answered by : huldar

figure(1);
plot(x,y);
title('myTitle');

Source : https://uk.mathworks.com/help/matlab/ref/title.html | Last Update : Wed, 28 Apr 21

Question : matlab parameter in title

Answered by : helpful-hawk-9p0cvlhetjaw

str = sprintf('just an example of %d that isnt working', variable)
title(str)

Source : | Last Update : Thu, 11 Feb 21

Question : matlab figure title

Answered by : defeated-dragonfly-3u8zwwuzs4md

f1=figure('Name','Measured Data','NumberTitle','off');
...
...
figure(f1);
scatter((1:20),rand(1,20));

Source : | Last Update : Sat, 04 Dec 21

Answers related to matlab title figure

Code Explorer Popular Question For Java