About 128,000 results
Open links in new tab
  1. inputdlg - MathWorks

    Returns a cell array of character vectors containing one input per edit field, starting from the top of the dialog box. Use the str2num function to convert space-delimited and comma-delimited values into row vectors, and semicolon-delimited values into column vectors.

  2. dialog - MathWorks

    Use the uicontrol function to add user interface controls to a dialog box. For instance, create a program file called mydialog.m that displays a dialog containing text and a button. function mydialog d = dialog( 'Position' ,[300 300 250 150], 'Name' , …

  3. questdlg - MathWorks

    answer = questdlg(quest) creates a modal dialog box that presents a question and returns the user's response -- 'Yes', 'No', 'Cancel', or ''. By default, the dialog box has three standard buttons, labeled Yes , No , and Cancel .

  4. msgbox - MathWorks

    Use this function if you want to show a message dialog box over multiple app windows, the MATLAB ® desktop, or Simulink ® and still be able to interact with them before responding to the dialog box.

  5. listdlg - MathWorks

    [indx,tf] = listdlg('ListString',list) creates a modal dialog box that allows the user to select one or more items from the specified list. The list value is the list of items to present in the dialog box.

  6. Creating a dropdown menu in inputdlg box in MATLAB

    Jul 26, 2020 · Creating a dropdown menu in inputdlg box in MATLAB. Learn more about dropdown menu I have this Matlab code: prompt = {'Enter period:','Enter frequency:'}; dlgtitle = …

  7. uiconfirm - MathWorks

    uiconfirm(fig,message,title,Name,Value) displays the confirmation dialog box with one or more Name,Value arguments that customize the appearance and behavior of the dialog box. For example, you can specify a custom set of options in the dialog box instead of …

  8. How do I build a modal dialog box (GUI) that waits for input from …

    Mar 24, 2011 · I want to build a Graphical User Interface (GUI) that waits for input from a user. I would like to know how to create a modal figure that pauses the execution of a MATLAB file to prompt a user for...

  9. uigetfile - MathWorks

    file = uigetfile opens a modal dialog box that lists files in the current folder. It enables a user to select or enter the name of a file. If the file exists and is valid, uigetfile returns the file name when the user clicks Open.

  10. inputsdlg: Enhanced Input Dialog Box - File Exchange - MATLAB …

    Jun 30, 2015 · - INPUTSDLG can automatically size controls and dialog box for an optimal appearance, and control's size can be made to auto-adjust if dialog is made resizable. - INPUTSDLG supports user callbacks to all UI controls as well as dialog's CreateFcn and DeleteFcn callbacks.

Refresh