我一直在尝试发布我在matlab中编写的函数。如何输入变量以向读者显示该功能与这些数字一起使用?我尝试使用
publish(passage3([1 2 3 4;2 3 4 5]))
但我收到了以下信息:
Error in LocateFile elseuf (length(dir(file))==1) Error in publish (line 87) fullPathtoScript=LocateFile(file) Error using passage3 not enough input arguments"
当我在同一个例子上激活该功能时,它工作得很好但是关于发布...我该如何解决?
答案 0 :(得分:0)
好吧,我发现文件func.m的正确命令是
publish('func.m', struct('codeToEvaluate', 'func(matA,matB,...)', 'showCode', true))