Skip to content
Snippets Groups Projects
Commit ecd1352f authored by Achilles Kappis's avatar Achilles Kappis
Browse files

Fixed typo resulting in error in virtMicGeo.m

parent 52496e6a
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ function [vPos, vPosMesh] = virtMicGeo(gType, xLen, xOff, yOff, zOff, nSens, ori
validateattributes(nSens, "numeric", {'scalar', 'real', 'nonnegative', 'finite', 'nonnan'}, mfilename, "Number of sensors", 6);
end
else
if sum(strmpci(gType, ["Array", "Grid"])) > 0
if sum(strcmpi(gType, ["Array", "Grid"])) > 0
nSens = 1e2;
elseif strcmpi(gType, "Cube")
nSens = 1e3;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment