2012-10-20 22 views

回答

47

是的。

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

將不會返回任何內容。更簡單的版本:

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

是等同的。

+9

「幹得好」<3 – plesiv

相關問題