Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
2024 Rg Ls FF Op Splitting And Completion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIT
IANM
AG Inverse Probleme
Software
2024 Rg Ls FF Op Splitting And Completion
Commits
53549b70
Commit
53549b70
authored
1 year ago
by
Lisa Schätzle
Browse files
Options
Downloads
Patches
Plain Diff
Update addNoise.m
parent
d1164a56
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/addNoise.m
+15
-15
15 additions, 15 deletions
src/addNoise.m
with
15 additions
and
15 deletions
src/addNoise.m
+
15
−
15
View file @
53549b70
function
F
=
addnoise
(
F
,
noiselevel
)
%% ADDNOISE: Adds uniformly distributed complex pseudorandom numbers to the
% farfield operator such that the relative Frobernius error of the perturbed data
% is given by noiselevel
% INPUT: F - far field operator (ntheta x nd matrix)
% noiselevel - relative noise level (between 0 and 1)
% OUTPUT: F - perturbed far field operator
if
noiselevel
>
0
errMat
=
rand
(
size
(
F
))
-.
5
+
1
i
*
(
rand
(
size
(
F
))
-.
5
);
% matrix of u.i.d. numbers between 0 and 1
errMat
=
errMat
.
/
norm
(
errMat
);
F
=
F
+
errMat
*
noiselevel
*
norm
(
F
);
clear
errMat
end
\ No newline at end of file
function
Fn
=
addnoise
(
F
,
noiselevel
)
% 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.
%
% *************************************************************************************
if
noiselevel
>
0
errMat
=
rand
(
size
(
F
))
-.
5
+
1
i
*
(
rand
(
size
(
F
))
-.
5
);
errMat
=
errMat
.
/
norm
(
errMat
);
Fn
=
F
+
errMat
*
noiselevel
*
norm
(
F
);
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment