MATLAB Function Reference |
Syntax
user_entry = input('prompt
') user_entry = input('prompt
','s')
Description
使用者可以使用目前工作空間已有的變數所構成的任何MATLAB陳述式來對輸入提示做回應。
user_entry = input('
在螢幕上顯示 prompt
')
prompt
作為提示使用者輸入的用途,等待使用者來自鍵盤的輸入,並將其輸入的值回傳給 user_entry
。
user_entry = input('
將輸入的字串以文字變數的型態回傳而非以變數名稱或數值型態回傳。prompt
','s')
Remarks
若不輸入任何東西直接按下 Return鍵,將回傳一個空的矩陣。
在提示中的文字字串,可以包含一個或多個的'\n'
字元。'\n'
是跳至下一行的意思。可允許提示字串跳越數行。若只要顯示 '\'
字元,使用'\\'
即可。
Examples
reply = input('Do you want more? Y/N [Y]: ','s'); if isempty(reply) reply = 'Y'; end
See Also
keyboard
, menu
, ginput
, uicontrol
inpolygon | inputdlg |