Function definitions are not permitted in this context.
1 回表示 (過去 30 日間)
古いコメントを表示
I am having this error "Function definitions are not permitted in this context." writing this
A = spdiags([-1 a11 0;ones(n-2,1)*[-1 2 -1];0 a11 -1],-1:1,n,n)'/h^2;
0 件のコメント
採用された回答
Image Analyst
2016 年 4 月 27 日
You have probably combined a function and a script in the same m-file. You can't do that. If your script is called test.m, and has MyFunction defined in it some where, then make sure this is the first line of your test.m
function test()
2 件のコメント
Image Analyst
2016 年 4 月 27 日
You forgot to paste the actual error message. Maybe you want dt.*nt - I have no idea.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!