Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Institute of Technical Acoustics (ITA)
toolbox
Commits
8cdf0892
Commit
8cdf0892
authored
Sep 26, 2016
by
Jan-Gerrit Richter
Browse files
jck app-descriptions + ita_smooth bug jona
parent
80767ac5
Changes
19
Hide whitespace changes
Inline
Side-by-side
applications/Hardware/Audiometer/AppDescription.txt
View file @
8cdf0892
Contact: mgu@akustik.rwth-aachen.de
Description: use Norsonic838, read result from Auritec-Audiometer
Dependencies: Kundt
\ No newline at end of file
Dependencies:
\ No newline at end of file
applications/Hardware/ITAMotorControl/AppDescription.txt
View file @
8cdf0892
Contact: pdi@akustik.rwth-aachen.de
Description: Control MOVTEC motor unit
Dependencies: Beamforming, Measurement, Meshing, SourceTranslation, Vibrometer
\ No newline at end of file
Dependencies: Measurement
\ No newline at end of file
applications/Hardware/Microflown/AppDescription.txt
View file @
8cdf0892
Contact: mmt@akustik.rwth-aachen.de
Description: Microflown Impedance Measurements
Dependencies: Measurement, MicroflownImpedanceProcessor
\ No newline at end of file
Dependencies: Measurement
\ No newline at end of file
applications/Hardware/Scattering/AppDescription.txt
View file @
8cdf0892
Contact: mmt@akustik.rwth-aachen.de
Description: Scattering Coefficient Measurements
Dependencies: Arduino, RevChamberAbsMeas, RoomAcoustics
\ No newline at end of file
Dependencies: RoomAcoustics
\ No newline at end of file
applications/Hardware/Vibrometer/AppDescription.txt
View file @
8cdf0892
Contact: mmt@akustik.rwth-aachen.de
Description: Control Polytec Laser Vibrometer
Dependencies: Meshing
\ No newline at end of file
Dependencies:
\ No newline at end of file
applications/Laboratory/AppDescription.txt
View file @
8cdf0892
Contact: pdi@akustik.rwth-aachen.de
Description: ITA Acoustic Laboratory Course
Dependencies: BrutoConvolver, FluidBEM, LoudspeakerTools, Measurement, PoleZeroProny, FrontendControl, RoomAcoustics, SpatialAudio, SphericalHarmonics, Tools
\ No newline at end of file
Dependencies: Measurement, RoomAcoustics, SpatialAudio, SphericalHarmonics
\ No newline at end of file
applications/Measurement/AppDescription.txt
View file @
8cdf0892
Contact: pdi@akustik.rwth-aachen.de
Description: Everything to perform Acoustic Measurements
Dependencies: Nonlinear, RoomAcoustics
\ No newline at end of file
Dependencies: RoomAcoustics
\ No newline at end of file
applications/Measurement/ImpedanceTube/AppDescription.txt
View file @
8cdf0892
Contact: mgu@akustik.rwth-aachen.de
Description: Measurement for Kundt's tube
Dependencies: Conversions, Measurement
\ No newline at end of file
Dependencies: Measurement
\ No newline at end of file
applications/Measurement/LoudspeakerTools/AppDescription.txt
View file @
8cdf0892
Contact: pdi@akustik.rwth-aachen.de
Description: Loudspeaker Measurement, Non-linearities, THD, etc.
Dependencies: Measurement, Nonlinear
\ No newline at end of file
Dependencies: Measurement
\ No newline at end of file
applications/Numeric/FluidFEM/AppDescription.txt
View file @
8cdf0892
Contact: rbo@akustik.rwth-aachen.de
Description: Fluid FEM solver
Dependencies: Meshing
\ No newline at end of file
Dependencies:
\ No newline at end of file
applications/RoomAcoustics/AppDescription.txt
View file @
8cdf0892
Contact: mgu@akustik.rwth-aachen.de
Description: Room Acoustic Parameters / Evaluation / Measurement
Dependencies: Measurement, Nonlinear, PoleZeroProny
\ No newline at end of file
Dependencies: Measurement
\ No newline at end of file
applications/SignalProcessing/Beamforming/AppDescription.txt
View file @
8cdf0892
Contact: mmt@akustik.rwth-aachen.de
Description: Beamforming, Array Processing
Dependencies: Meshing
\ No newline at end of file
Dependencies:
\ No newline at end of file
applications/SignalProcessing/SoundFieldClassification/AppDescription.txt
View file @
8cdf0892
Contact: rsc@akustik.rwth-aachen.de
Description: Phonak Project: Sound Field Classification
Dependencies: BinauralModel, RoomAcoustics
\ No newline at end of file
Dependencies: RoomAcoustics
\ No newline at end of file
applications/SpatialAudio/BalloonClass/AppDescription.txt
View file @
8cdf0892
Contact: mpo@akustik.rwth-aachen.de
Description: Balloon class for spherical measurement data
Dependencies: SourceTranslation, SphericalHarmonics
\ No newline at end of file
Dependencies: SphericalHarmonics
\ No newline at end of file
applications/SphericalHarmonics/AppDescription.txt
View file @
8cdf0892
Contact: mpo@akustik.rwth-aachen.de
Description: spherical harmonics and other spherical stuff
Dependencies: BalloonClass, Meshing, SourceTranslation, SpatialAudio
\ No newline at end of file
Dependencies: SpatialAudio
\ No newline at end of file
applications/TPA-TPS/AppDescription.txt
View file @
8cdf0892
Contact: pdi@akustik.rwth-aachen.de
Description: Transfer Path Analysis and Synthesis
Dependencies: IEMauralization, Measurement, PoleZeroProny
\ No newline at end of file
Dependencies: Measurement
\ No newline at end of file
applications/VirtualAcoustics/Raven/AppDescription.txt
View file @
8cdf0892
Contact: spe@akustik.rwth-aachen.de
Description: Raven Room Acoustics Simulation
Dependencies: FluidBEM, Impedance_Calculator, RoomAcoustics, SphericalHarmonics
\ No newline at end of file
Dependencies: RoomAcoustics, SphericalHarmonics
\ No newline at end of file
kernel/DSP/Edit/ita_smooth.m
View file @
8cdf0892
...
...
@@ -63,12 +63,14 @@ thisFuncStr = [upper(mfilename) ':'];
persistent
smooth_helper
if
isempty
(
smooth_helper
)
% Check if
if
exist
(
'smooth.m'
,
'file'
)
smooth_helper
=
@
smooth
;
smooth_opt
=
[];
ita_verbose_info
(
'Using MATLAB smooth'
,
1
);
else
smooth_helper
=
@
ita_smooth_helper
;
smooth_opt
=
cell
(
1
);
ita_verbose_info
(
'Using lowlevel Toolbox Smooth'
,
1
);
end
...
...
@@ -80,6 +82,9 @@ narginchk(1,6);
if
nargin
>=
4
&&
strcmp
(
func2str
(
smooth_helper
),
'smooth'
);
smooth_opt
=
varargin
(
4
:
end
);
varargin
(
4
:
end
)
=
[];
else
ita_verbose_info
([
thisFuncStr
'No Curve Fitting Toolbox. Additional arguments cannot be processed.'
],
1
)
varargin
(
4
:
end
)
=
[];
end
result
=
itaAudio
([
numel
(
audioObject
),
1
]);
...
...
kernel/DSP/ita_smooth_notches.m
View file @
8cdf0892
...
...
@@ -41,6 +41,8 @@ sArgs = struct('pos1_data','itaAudio', 'bandwidth', 1/3,'squeezeFactor',0
[
input
,
sArgs
]
=
ita_parse_arguments
(
sArgs
,
varargin
);
%% Smooth Notches
% sgolay = Savitzky-Golay filter. Only possible with Curve Fitting Toolbox.
% ita_smooth will catch this.
input_smooth
=
ita_smooth
(
input
,
sArgs
.
smoothType
,
sArgs
.
bandwidth
,
'Abs+GDelay'
,
'sgolay'
,
2
);
ratio
=
input
/
input_smooth
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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