Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG UE
Commits
6e1c5511
Commit
6e1c5511
authored
Dec 17, 2014
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
git-svn-id:
http://svn.eurecom.fr/openair4G/trunk@6277
818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent
61d34160
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
targets/PROJECTS/CORRIDOR/dpss_smooth.m
targets/PROJECTS/CORRIDOR/dpss_smooth.m
+4
-0
targets/PROJECTS/CORRIDOR/findminimumd.m
targets/PROJECTS/CORRIDOR/findminimumd.m
+11
-0
No files found.
targets/PROJECTS/CORRIDOR/dpss_smooth.m
0 → 100644
View file @
6e1c5511
function H_dpss = dpss_smooth(H,V,Dopt,f_start)
alpha = V(f_start:4:end,1:Dopt)'*H.';
H_dpss = V(:,1:Dopt)*alpha;
\ No newline at end of file
targets/PROJECTS/CORRIDOR/findminimumd.m
0 → 100644
View file @
6e1c5511
function
[
MSEsubsp
,
minind
]
=
findminimumd
(
sigma2
,
nM
,
nD
,
Sb
)
% Changes:
% Author: Thomas Zemen
% Copyright (c) by Forschungszentrum Telekommunikation Wien (ftw.)
for
i
=
1
:
nD
MSEsubsp
(
i
)
=
i
/
nM
*
sigma2
+
1
/
nM
*
sum
(
Sb
(
i
+
1
:
nD
));
end
[
MSEmin
,
minind
]
=
min
(
MSEsubsp
);
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment