Skip to content
Snippets Groups Projects
Commit 1c0328ad authored by Lisa Schätzle's avatar Lisa Schätzle
Browse files

Update addNoise.m

parent 65fc70d3
No related branches found
No related tags found
No related merge requests found
function Fn = addnoise(F, noiselevel)
% Adds p%=noiselevel complex valued uniformly distributed additive error to a matrix.
%% ADDNOISE: Adds p%=noiselevel complex valued uniformly distributed additive error to a matrix.
%
% INPUT: F Unperturbed far field matrix, nxhat*nd-array.
% noiselevel Relative noise level, between 0 and 1.
% OUTPUT: Fn Perturbed far field matrix, nxhat*nd-array.
%
% *************************************************************************************
% SYNTAX: addnoise(F, noiselevel)
%
% **********************************************************************************************
if noiselevel > 0
errMat = rand(size(F))-.5+1i*(rand(size(F))-.5);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment