标签: matlab user-interface
我使用的是matlab 2013版,我无法从编辑文本字段中读取10位数的电话号码。它只读取8位数字。我该怎么办?
input=str2double(get(hobject,'string')); if isnan(input) errordlg('You must enter a numeric value','Invalid Input','modal') uicontrol(hObject) return else display(input); end