天天看點

matlab定義變量值傳入子函數

在matlab中定義全局變量并指派,在子函數中再次定義全局變量。

global x
x=10;  
%子函數
function y= fct()
global x;

end        
           

繼續閱讀