what is the problem with my function?
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
i'm having a problem with my function..
function[T,S]=MCDK(X)
then it says "ERROR; Function definitions are not permitted in this context"
0 个评论
回答(1 个)
Azzi Abdelmalek
2015-8-5
I suppose you are trying to run
function[T,S]=MCDK(X)
The correct way is
[T,S]=MCDK(X)
0 个评论
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!