2012-10-20 22 views

risposta

47

Sì.

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

non restituirà nulla. Una versione ancora più semplice:

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

è equivalente.

+9

"Fai cose fantastiche" <3 – plesiv

Problemi correlati