23

我想编写一个函数来进行一些图像处理并将处理后的图像写入文件。我不希望它返回任何东西。我总是可以返回一个可以忽略的虚拟变量,但我想保持我的代码干净。如何在 MATLAB 中实现这一点?

4

1 回答 1

53

是的。

function [] = my_awesome_function(image,filename,other_inputs)
    % Do awesome things.
end

不会返回任何东西。一个更简单的版本:

function my_awesome_function(image,filename,other_inputs)
    % Do awesome things.
end

是等价的。

于 2012-10-20T21:24:59.693 回答