Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Virtual Sensing
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SPAH
IN-NOVA
Virtual Sensing
Commits
c73cc7eb
Commit
c73cc7eb
authored
8 months ago
by
Achilles Kappis
Browse files
Options
Downloads
Patches
Plain Diff
Add the source signals as output argument for ptSrcFieldTD.m
parent
1dd73eec
No related branches found
No related tags found
1 merge request
!3
Update to v0.2.3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Sound Fields/MATLAB/Functions/ptSrcFieldTD.m
+6
-2
6 additions, 2 deletions
Sound Fields/MATLAB/Functions/ptSrcFieldTD.m
with
6 additions
and
2 deletions
Sound Fields/MATLAB/Functions/ptSrcFieldTD.m
+
6
−
2
View file @
c73cc7eb
...
@@ -58,6 +58,10 @@
...
@@ -58,6 +58,10 @@
% source averaged over the trials/sound field
% source averaged over the trials/sound field
% realisations. This is an IxMxN array.
% realisations. This is an IxMxN array.
%
%
% Q [numeric]: The source signals. If Q is provided, the same variable is
% returned here. If Q is generated internally, the signals are
% returned.
%
% --------------------------------------------------
% --------------------------------------------------
% Notes
% Notes
%
%
...
@@ -68,12 +72,12 @@
...
@@ -68,12 +72,12 @@
% long source signals
% long source signals
%
%
% --------------------------------------------------
% --------------------------------------------------
function
[
rSig
,
rSigMean
,
rSigMtx
,
rSigMtxMean
]
=
ptSrcFieldTD
(
sPos
,
rPos
,
fs
,
Q
,
nTrials
,
c
)
function
[
rSig
,
rSigMean
,
rSigMtx
,
rSigMtxMean
,
Q
]
=
ptSrcFieldTD
(
sPos
,
rPos
,
fs
,
Q
,
nTrials
,
c
)
% ====================================================
% ====================================================
% Check for number of arguments
% Check for number of arguments
% ====================================================
% ====================================================
narginchk
(
3
,
6
);
narginchk
(
3
,
6
);
nargoutchk
(
0
,
4
);
nargoutchk
(
0
,
5
);
% ====================================================
% ====================================================
% Validate input arguments
% Validate input arguments
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment