我需要帮助,如何从 matlab 中的函数返回矩阵?我有一个零矩阵(大小 NxN)。我将矩阵发送到某个函数以更新她。如何返回更新后的矩阵?
在代码中:
matrix = zeros(size); %put zeros
updateMatrix(radius,x0,y0,matrix);%call to function
function updateMatrix(radius,x0,y0,matrix)
update the matrix
end
continue the prog with the updated matrix
我只需要返回更新后的矩阵,我不会更改其他变量。
我试图这样做:
matrix = zeros(size); %put zeros
matrix=updateMatrix(radius,x0,y0,matrix);%call to function
function [matrix]=updateMatrix(radius,x0,y0,matrix)
update the matrix
end
continue the prog with the updated matrix
但它不起作用。
谢谢!