我对如何在 MATLAB 中对无限量的矩阵求和感到非常困惑。可以说我有这个功能(高斯):
%Set up grid/coordinate system
Ngrid=400;
w=Ngrid;
h=Ngrid;
%Create Gaussian Distribution
G = zeros ([w, h]);
Sig = 7.3; %I want the end/resultant G to be a summation of Sign from 7.3 to 10 with dx
for x = 1 : w
for y = 1 : h
G (x, y) = exp (-((Sig^-2)*((x-w/2+1)^2 + (y-h/2+1)^2)) / (2));
end
end
我本质上希望最终/结果函数 G 是从 7.3 到 10 的 Sign 的总和,其中 dx (非常小)很小,即积分。我该怎么做呢?我很困惑。甚至可以做到吗?