You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 5, 2024. It is now read-only.
When I implemented the function ScreenBasedCalibrationValidation() in my code using MATLAB 2016b I received the following error:
The class Capabilities has no Constant property or Static method named 'CanDoScreenBasedCalibration'.
Error in ScreenBasedCalibrationValidation (line 38)
if ~ismember(Capabilities.CanDoScreenBasedCalibration,new_tracker.DeviceCapabilities)
Error in eyetracker_calibration (line 230)
calib = ScreenBasedCalibrationValidation(eyetracker, sample_count, time_out_ms);
However, this issue was resolved when I changed line 38 from Capabilities.CanDoScreenBasedCalibration to EyeTrackerCapabilities.CanDoScreenBasedCalibration.
The text was updated successfully, but these errors were encountered:
When I implemented the function ScreenBasedCalibrationValidation() in my code using MATLAB 2016b I received the following error:
However, this issue was resolved when I changed line 38 from
Capabilities.CanDoScreenBasedCalibration
toEyeTrackerCapabilities.CanDoScreenBasedCalibration
.The text was updated successfully, but these errors were encountered: