function without matching end
古いコメントを表示
hello everyone,
I have got a m file which reads in data and plots the data in a GUI. In the main file itself there are many functions written. My understanding was that each function needs an end statement. In the code that I have functions are without end statement. What could be the reason for this . I am copying part of code for reference.
function panel_sp_1_CreateFcn(hObject, eventdata, handles)
set(hObject, 'UserData', 0);
The above function is from my code. The function does not have an end statement.
採用された回答
その他の回答 (1 件)
No, sub-functions do not necessarily have to have end statements. However, once you close one sub-function with an end statement, you must do so for all functions within that mfile.
1 件のコメント
カテゴリ
ヘルプ センター および File Exchange で Workspace Variables and MAT Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!