0

Octave imshow() will display the image but the title of the image as "Figure 1", How can I change the title.

Sahan Randika
  • 47
  • 1
  • 14
  • 1
    Get 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 Answers1

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