Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Institute of Technical Acoustics (ITA)
toolbox
Commits
c1c5105d
Commit
c1c5105d
authored
Sep 18, 2017
by
Jan-Gerrit Richter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix: msinterleaved display did not work after optimize
parent
320ff302
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
applications/Measurement/ClassStuff/@itaMSTF/itaMSTF.m
applications/Measurement/ClassStuff/@itaMSTF/itaMSTF.m
+11
-1
No files found.
applications/Measurement/ClassStuff/@itaMSTF/itaMSTF.m
View file @
c1c5105d
...
...
@@ -653,7 +653,17 @@ classdef itaMSTF < itaMSPlaybackRecord
% End Display Start Line
% Start Display Values
disp
([
' type = '
this
.
type
' samplingRate = '
num2str
(
this
.
samplingRate
)
' nSamples = '
num2str
(
this
.
nSamples
)])
% someone decided to put an excitation as this.type during
% optimization..
typeStr
=
''
;
if
isa
(
this
.
type
,
'itaAudio'
)
typeStr
=
'custom'
;
else
typeStr
=
this
.
type
;
end
disp
([
' type = '
typeStr
' samplingRate = '
num2str
(
this
.
samplingRate
)
' nSamples = '
num2str
(
this
.
nSamples
)])
oa
=
repmat
(
' '
,
1
,
7
);
oa_temp
=
(
this
.
outputamplification
);
oa
(
1
:
length
(
oa_temp
))
=
oa_temp
;
...
...
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