Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想编写一个函数来进行一些图像处理并将处理后的图像写入文件。我不希望它返回任何东西。我总是可以返回一个可以忽略的虚拟变量,但我想保持我的代码干净。如何在 MATLAB 中实现这一点?
是的。
function [] = my_awesome_function(image,filename,other_inputs) % Do awesome things. end
不会返回任何东西。一个更简单的版本:
function my_awesome_function(image,filename,other_inputs) % Do awesome things. end
是等价的。