我完全是MATLAB編程的新手,但我收到了一個腳本,不知怎的,這些腳本不再提供function
的所有end
語句。可以在MATLAB函數中省略「結束」嗎?
例如:
function pushbutton_open_Callback(hObject, eventdata, handles)
[FileName,PathName,FilterIndex] = uigetfile('*.txt','Select the CONFIG file');
if FileName~=0
init_session(hObject, FileName, PathName);
end
% shouldn't there be an "end" here?
function pushbutton_start_Callback(hObject, eventdata, handles)
% ....
那是SYLE 「好」?顯然,當我嘗試運行它時沒有語法錯誤,並且程序在我們使用它時就已經工作了。函數是否會自動運行,直到下一個function
聲明?
不,最後一個不是可選的,因爲你關閉了'g(x2)'。 – abcd
謝謝,我不知道。它已被編輯。 – Oli