MATLAB: Suptitle – is it possible to use with arguments besides text

suptitle

for example – I want my super title to display the value of my variable "num".
I coded this:
suptitle('my number=%u',num)
and got the error message:
Error using suptitle Too many input arguments.
Can I make it somehow?
Thanks, Shir

Best Answer

suptitle accepts one input argument, so try
suptitle(['my number= ',num2str(num)])