Code covered by the BSD License
-
[C, y, X, n, p, error1]=LMS_t...
-
[LMSout, blms, Rsq, error1]=L...
-
[LMSout, blms, Rsq, error1]=L...
-
[LeqA, LeqA8, LeqC, LeqC8, Le...
% This program calculates the A-weighted, C-weighted and Linear weighted
-
[SP, vibs, Fs_SP, Fs_vibs, de...
-
[SP2, mean_array2]=sub_mean(S...
% This program calculates the running average for sound and vibrations
-
[filename_base, ext]=file_ext...
% This program separates the filename from the extension. For example a
-
[gm]=geomean2(y)
% This program calculates the geometric mean, if all of the data are
-
[interval]=call_ci(x,confiden...
-
[ma,mi]=findextrema(a)
FINDEXTREMA - finds minima and maxima of data
-
[ndraw, count, count2, error]...
% This program quickly and randomly selects n integers from a to b.
-
[rt_array2, lv_array2, lv_arr...
-
[rta, Lya, rtpa]=reverb_time(...
-
[varargout]=convert_double(va...
-
[yA, B, A]=Aweight_time_filte...
% This program applies an A-weighting filter to
-
[yC, B, A]=Cweight_time_filte...
% This program applies an C-weighting filter to
-
adsgn(Fs);
ADSGN Design of a A-weighting filter.
-
cdsgn(Fs);
CDSGN Design of a A-weighting filter.
-
interval=ci(x,confidence,dim)...
interval=ci(x,confidence,dim);
-
loc=LMSloc(X)
-
oct3dsgn(Fc,Fs,N);
OCT3DSGN Design of a one-third-octave filter.
-
save_a_plot_reverb_time(a, fi...
-
View all files
from
Reverberation Time Calculator
by Edward Zechmann
Calculates Reverberation Time from multiple microphones using time records
|
| [interval]=call_ci(x,confidence, dim)
|
function [interval]=call_ci(x,confidence, dim)
% %
% % call_ci is written by Edward L. Zechmann
% % 18 December 2007
% %
% % ci is written by Raymond Reynolds 23/11/06
% %
% %
b=[90, 95, 99];
if nargin < 2;
confidence=95;
end
if ~ismember(confidence, b);
confidence=95;
end
if nargin < 3
dim=1;
end
dim=round(dim);
if dim < 0
dim=1;
end
max_size=max(max(size(x)));
if dim > max_size
dim=max_size;
end
if length(x) > 1
if nargin < 2
interval=ci(x);
elseif nargin < 3;
interval=ci(x,confidence);
else
interval=ci(x,confidence,dim);
end
else
interval=0;
end
|
|
Contact us at files@mathworks.com