在matlab中发布代码时出错

时间:2015-10-05 14:25:13

标签: matlab

我在Matlab中发布了以下代码,虽然产生了所需的输出,但同时它也在发布时产生了错误。知道为什么吗?

%% Gaussian kernel function
% Some text
function t0 = kachra(Param)
t0 = Param;
end

附件是已发布的输出。

由于

enter image description here

2 个答案:

答案 0 :(得分:2)

发布时需要指定函数的输入。

如果选择Edit Publishing Options,则会看到以下GUI:

yay

在此处修改表达式,然后将其发布,以便传递输入参数。

答案 1 :(得分:0)

您需要配置自定义设置以发布带有输出结果的代码。

[t0] = kachra(100); %the argument is of your choice.

add your command-line input argument manually here: