MATLAB: Does the text get cut off in the dialog box when I use INPUTDLG

cutcutoffdialogfitinputdlgMATLABofftext;

I am having problems when using input dialog boxes (INPUTDLG) with text. Often the text does not lie entirely within the window, and so not all the text can be seen, i.e. the text gets cut off. This behavior can be seen with the following code:
a = inputdlg('Please enter the value of epsilon to compute the pseudospectral abscissa number for');

Best Answer

This bug has been fixed for Release 14 SP1 (R14SP1). For previous releases, read below for any possible workarounds:
This appears to be a bug in the INPUTDLG function; more specifically in the TEXTWRAP function that INPUTDLG calls.
As a workaround, you can turn the resize option of the INPUTDLG command to ON, which will allow you to extend the size of the dialog so all the text appears. An example of how to do this follows:
a = inputdlg('Please enter the value of epsilon to compute the pseudospectral abscissa number for','',1,{''},'on');