Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
Master Thesis Codes
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
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
Renaud Gonce
Master Thesis Codes
Commits
b46a74f6
Commit
b46a74f6
authored
Jun 12, 2020
by
Renaud Gonce
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new file
parent
e1231e86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
g_GMSK
g_GMSK
+14
-0
No files found.
g_GMSK
0 → 100644
View file @
b46a74f6
function [out] = g_GMSK(t,K,Tb,BTb)
% g_GMSK produces the coefficient of a Gaussian filter such as used in GMSK
% modulation.
% * inputs: t is a vector used as support for the Gaussian
% K is a parameter for the Gaussian amplitude
% Tb is the bit period
% BTb is the Bandwidth - Bit period product
% * output: out is a vector containing the filter coefficients
B = BTb/Tb;
out = -K/(2*sqrt(log(2))) * (erf(2*B*pi* (t-Tb/2)/sqrt(log(4))) - erf(2*B*pi* (t+Tb/2)/sqrt(log(4))));
end
\ 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