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
e379257c
Commit
e379257c
authored
1 year ago
by
Lisa Schätzle
Browse files
Options
Downloads
Patches
Plain Diff
Update projOp.m
parent
e02176db
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/projOp.m
+28
-19
28 additions, 19 deletions
src/projOp.m
with
28 additions
and
19 deletions
src/projOp.m
+
28
−
19
View file @
e379257c
function
[
F
]
=
projOp
(
F
,
sampling
,
kappa
,
c1
,
c2
,
N1
,
N2
)
% Projection of F onto the subspace $T_{c_1,c_2}^\astV_{N_1,N_2}$
% c_1 indicates shift in row direction, c_2 in column direction
% N_1 is cutting parameter in row direction, N_2 in column direction
F
=
translOp
(
F
,
sampling
,
c1
,
c2
,
kappa
);
% shift the origin
Ffft
=
fft2
(
F
);
% Ffft = fft(F.'); % columnwise 1D FT
Ffft
(:,(
N1
+
2
)
:
(
end
-
N1
))
=
0
;
Ffft
((
N2
+
2
)
:
(
end
-
N2
),:)
=
0
;
F
=
ifft2
(
Ffft
);
% F = ifft(Ffft).'; % columnwise 1d IFT
F
=
translOp
(
F
,
sampling
,
-
c1
,
-
c2
,
kappa
);
% shift back the origin
end
\ No newline at end of file
function
[
Ft
]
=
projOp
(
F
,
sampling
,
kappa
,
c1
,
c2
,
N1
,
N2
)
% Simulates projection operator on generalized subspace of non-evanescent far field operators.
% Projects of F onto the subspace $T_{c_1,c_2}^\astV_{N_1,N_2}$.
%
% INPUT: F Far field matrix, nxhat*nd-array.
% sampling Structure containing information about the discretization.
% kappa Wave number, >0.
% c1 Determines translation in row direction, vector of length 2.
% c2 Determines translation in column direction, vector of length 2.
% N1 Cutting index in row direction, natural number.
% N2 Cutting index in column direction, natural number.
% OUTPUT: Fp Projected far field matrix, nxhat*nd-array.
%
% *********************************************************************************************
F
=
translOp
(
F
,
sampling
,
c1
,
c2
,
kappa
);
% shift the origin
Ffft
=
fft2
(
F
);
Ffft
(:,(
N1
+
2
)
:
(
end
-
N1
))
=
0
;
Ffft
((
N2
+
2
)
:
(
end
-
N2
),:)
=
0
;
F
=
ifft2
(
Ffft
);
Fp
=
translOp
(
F
,
sampling
,
-
c1
,
-
c2
,
kappa
);
% shift back the origin
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