0

这是我在这里提出的第一个问题,所以请多多包涵。我对 Matlab 并不陌生,但之前从未使用过 MVNRND 函数,而且我的统计知识也不强。我正在尝试做的总结如下:我正在尝试创建一个生成 2 个相关相位屏幕(NxN 矩阵)的函数,该函数将用于电磁高斯谢尔模型光束传播模拟。对于 X 和 Y 偏振态,光束需要单独的随机相位屏。我到目前为止的代码如下。

function [phz_x,phz_y]=GSM_phase_screen_2(l_phi_x,l_phi_y,sigma_phi_x, ...
sigma_phi_y,gamma,N,delta)
%GSM_PHASE_SCREEN_2
%   This code generates two correlated 2-D NxN Gaussian Schell-Model (GSM)
%   phase screens (matrices) of unit variance circular complex Gaussian
%   random numbers for the X and Y polarization states provided l_phi_x,
%   l_phi_y, sigma_phi_x, sigma_phi_y, and gamma. It utilizes the MVNRND
%   Matlab function.  
%
%   l_phi_x:        [m] correlation length in X phase screen
%   l_phi_y:        [m] correlation length in Y phase screen
%   sigma_phi_x:    phase variance in X phase screen
%   sigma_phi_y:    phase variance in Y phase screen
%   gamma:          correlation coefficient
%   N:              number of samples per side of grid
%   delta:          [m] sample grid spacing
%
%   phz_x:          [rad] 2-D phase screen for X polarization state
%   phz_y:          [rad] 2-D phase screen for Y polarization state

% ORIGINAL AUTHOR: Santasri Basu
% MODIFIED BY: Matthew Gridley
%       Added input arguments needed to generate 2 correlated phase
%       screens, updated PSD equations, and replaced RANDN with MVNRND
%

% Setup the Power Spectral Density (PSD)
del_f = 1 / (N*delta); % frequency grid spacing [1/m]
fx = (-N/2 : N/2-1) * del_f;

% Frequency grid
[fx,fy] = meshgrid(fx);

% GSM phase PSD
PSD_phi_x = (sigma_phi_x^2) * pi * (l_phi_x^2) * gamma * ...
    exp(-((pi * l_phi_x)^2) * (fx.^2 + fy.^2));
PSD_phi_y = (sigma_phi_y^2) * pi * (l_phi_y^2) * gamma * ...
    exp(-((pi * l_phi_y)^2) * (fx.^2 + fy.^2));

% Random draws of Fourier series coefficients
% (zero mean Gaussian random numbers)
% 
% the 2 lines of code below need changed to generate the correlated random
% draws using MVNRND and GAMMA
cn_x = (randn(N) + 1i*randn(N)) .* sqrt(PSD_phi_x) * del_f;
cn_y = (randn(N) + 1i*randn(N)) .* sqrt(PSD_phi_y) * del_f;

% Synthesize the phase screens
phz_x = real(ift2(cn_x,1));
phz_y = real(ift2(cn_y,1));

end



function [g, x] = ift2(G, df)
% [g, x] = ift2(G, df)
%   2-D inverse Fourier transform that keeps the origin at the center of 
%   the grid.
%
%   G:   Complex field in frequency space
%   df:  Spacing in frequency space [m^-1]
%   g:   Complex field in coordinate space

% Core function written by Jason Schmidt
% Modified: 17 Apr 2010
% By: Daniel J. Wheeler
%
% x output added functionality by Michael Steinbock 6/8/2014
%

g = ifftshift(ifft2(ifftshift(G))) * (length(G) * df)^2;

%% Calc x:
if nargout == 2
    N = size(G, 1);

    x = (0 : N-1) / (N*delta_f);
end

在上面的代码中,以“% Random draws of Fourier series coefficients”开头的注释下方的两行代码是我需要帮助的地方。我之前使用您看到的代码制作了两个矩阵,但意识到它们不是高斯相关的。根据我的学术顾问的建议,我应该使用 MVNRND 来生成这些相位屏幕。在查看了 MVNRND 的帮助文件后,我不知道如何将它用于此目的。我在这里搜索过,试图找到类似的问题和答案,但没有运气,我也搜索过谷歌。任何人都可以协助更改这两行代码以利用 MVNRND。谢谢!

4

1 回答 1

3

在此处输入代码经过大量研究,我想出了如何使用 MVNRND 来满足我的目的。我的意图是创建 4 个随机 NxN 矩阵来替换下面代码片段中 randn(N) 的 4 次使用。我需要用 MVNRND 生成的随机矩阵替换它们的原因是它们是相关的。在 MVNRND 中,您必须提供协方差矩阵。这就是让我难过的地方。

cn_x = (randn(N) + 1i*randn(N)) .* sqrt(PSD_phi_x) * del_f;
cn_y = (randn(N) + 1i*randn(N)) .* sqrt(PSD_phi_y) * del_f;

为了创建它,我有 4 个不同的随机值,我必须计算组合对的方差(协方差):rx_real、rx_imag、ry_real 和 ry_imag。一旦我弄清楚了,我就能够创建协方差矩阵。

下一个问题是弄清楚需要设置 MVNRND 中的“案例”值。我需要 4 个相关的 NxN 矩阵,所以我确定案例需要是 4xN^2 矩阵。然后我可以使用“reshape”命令将 MVNRND 输出转换为所需的 4 个 NxN 矩阵。

请看下面的代码。希望这可以帮助其他人!

% Multivariate normal parameters
mu = zeros([1,4]); % Zero mean Gaussian
% Covariance matrix for 4 circular complex Gaussian random numbers:
% rx_real, rx_imag, ry_real, ry_imag
% 
% [<rx_real rx_real> <rx_real rx_imag> <rx_real ry_real> <rx_real ry_imag>;
%  <rx_imag rx_real> <rx_imag rx_imag> <rx_imag ry_real> <rx_imag ry_imag>;
%  <ry_real rx_real> <ry_real rx_imag> <ry_real ry_real> <ry_real ry_imag>;
%  <ry_imag rx_real> <ry_imag rx_imag> <ry_imag ry_real> <ry_imag ry_imag>]
sigma = [1 0 gamma 0;
         0 1 0 gamma;
         gamma 0 1 0; 
         0 gamma 0 1];
cases = N^2; % matrix of random vectors

r = mvnrnd(mu, sigma, cases); % gives a 512^2x4 double matrix

rx_real = reshape(r(:,1),[N N]);
rx_imag = reshape(r(:,2),[N N]);
ry_real = reshape(r(:,3),[N N]);
ry_imag = reshape(r(:,4),[N N]);

% Correlated random draws of Fourier series coefficients
cn_x = (rx_real + 1i*rx_imag) .* sqrt(PSD_phi_x) * del_f;
cn_y = (ry_real + 1i*ry_imag) .* sqrt(PSD_phi_y) * del_f;
于 2014-10-22T14:53:20.113 回答