How to resolve this
18 ビュー (過去 30 日間)
古いコメントを表示
N1=function('N1')(t)
↑
Error: Function definitions are not supported in this context. Functions can only be created as local or nested functions in code files.
回答 (1 件)
Taylor
2024 年 7 月 2 日
As stated, functions in MATLAB must be defined as:
function y = myFunc(x)
%% Do something
end
If the function is in a file by itself, the file name must be the function name. Terminating with an "end" statement is optional in this case. If the function is defined within a script, it may be placed anywhere as of R2024a.
0 件のコメント
参考
カテゴリ
Help Center および 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!