% If you have two loops
m = 10 ;  % rows 
n = 5 ; % columns 
iwant = zeros(m,n) ;  % initialization 
% loop start
for i = 1:m
    for j = 1:n
        iwant(i,j) = rand ;   % your calculation goes here 
    end
end
Info
此问题已关闭。 请重新打开它进行编辑或回答。
此问题已关闭。
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!