Skip to content

Commit

Permalink
Fix syntax errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronWebster committed May 7, 2021
1 parent 61462e8 commit 7b458e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions camera/cameraComputeSequence.m
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@

if (numels(scenes) > 1 || numels(eposuretimes) > 1) && numels(scenes) ~= numels(exposuretimes)
error("For multiple scenes and frames, for now they need to be the same");
elseif
% need to add the ability to a variety of cases
% like multiple exposures of 1 scene and vice versa
else
warning("Need to add the ability to a variety of cases like multiple exposures of 1 scene and vice versa");
end

% assume we have rationalized the number of scenes and exposures
Expand Down
2 changes: 1 addition & 1 deletion utility/external/ptb/PsychCal/MeasMonXYZ.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
% Make the measurement
switch (whichMeterType)
case 0,
XYZ(:,i) = sum(settings(:,i)*ones(3,1);
XYZ(:,i) = sum(settings(:,i))*ones(3,1);
WaitSecs(0.1);
case 1,
XYZ(:,i) = MeasXYZ;
Expand Down

0 comments on commit 7b458e4

Please sign in to comment.