Octave imshow() will display the image but the title of the image as "Figure 1", How can I change the title.
Asked
Active
Viewed 670 times
0
-
1Get rid of "Figure 1": https://stackoverflow.com/questions/10929020 Change window title: https://stackoverflow.com/questions/4684363 Both for MATLAB, but apparently works for Octave 5.1.0, too. I just tested it. – HansHirse Jan 27 '20 at 07:08
-
No, i am trying to edit the title of the image, not the title of the figure – Sahan Randika Jan 27 '20 at 08:45
1 Answers
1
You can add your own title to a figure window's title bar by setting the Name property to the desired title and you can turn off the figure number by setting the NumberTitle property to 'off' as follows:
title ("imshow with random 100x100 matrix");
see document for more

Swift
- 790
- 1
- 5
- 19
-
Can we use this for octave, I think your answer is based on Matlab. – Sahan Randika Jan 27 '20 at 07:29
-
-
-
1its working fine in octave what error it is giving see http://imageprocessplace.blogspot.com/search/label/GNU%20Octave – Swift Jan 27 '20 at 09:47
-
1