This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function [aspectrum,wts] = audspec(pspectrum, sr, nfilts, fbtype, minfreq, maxfreq, sumpower, bwidth) | |
%[aspectrum,wts] = audspec(pspectrum, sr, nfilts, fbtype, minfreq, maxfreq, sumpower, bwidth) | |
% | |
% perform critical band analysis (see PLP) | |
% takes power spectrogram as input | |
if nargin < 2; sr = 16000; end | |
if nargin < 3; nfilts = ceil(hz2bark(sr/2))+1; end | |
if nargin < 4; fbtype = 'bark'; end | |
if nargin < 5; minfreq = 0; end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
TableLayout table = new TableLayout(this); | |
table.setStretchAllColumns(true); | |
table.setShrinkAllColumns(true); | |
TableRow rowTitle = new TableRow(this); |
NewerOlder