Skip to content
Snippets Groups Projects
Commit a5bc3b13 authored by leprob001's avatar leprob001
Browse files

Bugfix, cell to double error in tracking plugins.

parent a5cf57cd
No related branches found
No related tags found
No related merge requests found
286
\ No newline at end of file
287
\ No newline at end of file
......@@ -43,7 +43,7 @@ for oSoundsource = 1:length(soundsourceNames)
cell2mat(pData.(soundsourceNames{oSoundsource}).distance);
soundsourcePositions(oSoundsource, :) = ...
pSoundsourcePositions.(soundsourceNames{oSoundsource});
soundVelocity(oSoundsource) = pData.(soundsourceNames{oSoundsource}).soundspeed;
soundVelocity(oSoundsource) = pData.(soundsourceNames{oSoundsource}).soundspeed{1};
end
% initialize return variables
......
......@@ -43,7 +43,7 @@ for oSoundsource = 1:length(soundsourceNames)
cell2mat(pData.(soundsourceNames{oSoundsource}).distance);
soundsourcePositions(oSoundsource, :) = ...
pSoundsourcePositions.(soundsourceNames{oSoundsource});
soundVelocity(oSoundsource) = pData.(soundsourceNames{oSoundsource}).soundspeed;
soundVelocity(oSoundsource) = pData.(soundsourceNames{oSoundsource}).soundspeed{1};
end
% initialize return variables
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment