Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
toolbox
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
12
Issues
12
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
4
Merge Requests
4
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Institute of Technical Acoustics (ITA)
toolbox
Commits
1284d051
Commit
1284d051
authored
Nov 07, 2016
by
Robert Henzel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed new bassyst export
parent
f99d44c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
kernel/DataAudio_IO/private/getDocNode.m
kernel/DataAudio_IO/private/getDocNode.m
+11
-1
No files found.
kernel/DataAudio_IO/private/getDocNode.m
View file @
1284d051
...
...
@@ -50,11 +50,21 @@ function [freqVecNode, transferFunctionNode, inputImpedanceNode] = lsData2DomNod
fVec
=
transFunc
.
freqVector
;
fVec2
=
inputImp
.
freqVector
;
if
~
areIdenticalFreqVecs
(
fVec
,
fVec2
)
if
(
length
(
fVec
)
<
length
(
fVec2
))
transFunc
=
ita_interpolate_spk
(
transFunc
,
inputImp
.
fftDegree
);
else
inputImp
=
ita_interpolate_spk
(
inputImp
,
transFunc
.
fftDegree
);
end
end
fVec
=
transFunc
.
freqVector
;
fVec2
=
inputImp
.
freqVector
;
if
~
areIdenticalFreqVecs
(
fVec
,
fVec2
)
error
(
'Data files have no identical frequency vectors!'
)
% ita_interpolate_spk()
end
transFunc
=
transFunc
.
freqData
;
inputImp
=
inputImp
.
freqData
;
...
...
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