Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
skmad-suite
tff2020
Commits
baf7256f
Commit
baf7256f
authored
Nov 23, 2020
by
Marina Kreme
Browse files
delete
parent
a899d5fa
Pipeline
#5965
passed with stage
in 5 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
matlab/tfgm/datasets/get_win_params.m
deleted
100644 → 0
View file @
a899d5fa
function [win_type, win_dur,win_len, hop_ratio, nbins_ratio] = get_win_params(win_choice)
win_choice_split = split(win_choice);
win_type = win_choice_split{1};
win_len_str = win_choice_split{2};
win_len = str2double(win_len_str);
win_dur = win_len/ 8000;
switch win_type
case 'gauss'
hop_ratio = 1 / 4;
nbins_ratio = 4;
case 'hann'
hop_ratio = 1 / 8;
nbins_ratio = 2;
end
end
\ No newline at end of file
Write
Preview
Supports
Markdown
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