ginput error in matlab 2020a

1 次查看(过去 30 天)
Hello,
Code below works fine with matlab 2016. However there is an error when i am running in 2020a
Code:
scrsz = get(groot,'ScreenSize');
figure('Position',[1 1 scrsz(3)/.99 scrsz(4)/.99])
tempstart = 10000;
subplot(2,1,1)
plot(Analyze.Wrist(tempstart:tempstart+10000,:));
[x y] = ginput(2)
subplot(2,1,2)
plot(Analyze.Kluver(tempstart:tempstart+10000,:));
[x2 y2] = ginput(1)
Error:
Error using strfind
PATTERN must be a string scalar or character vector.
Error in contains (line 36)
tf = ~cellfun(@isempty, strfind(s, pattern));
Error in matlab.ui.internal.prepareFigureFor
Error in plotedit (line 124)
matlab.ui.internal.prepareFigureFor(varargin{1}, mfilename('fullpath'));
Error in uisuspend (line 48)
'ploteditEnable', plotedit(fig,'getenabletools'), ...
Error in ginput>setupFcn (line 213)
initialState.uisuspendState = uisuspend(fig);
Error in ginput (line 62)
initialState = setupFcn(fig);
Error in run_GetSingleTrialKluverMovementTimes_Bug_NewSDK (line 416)
[x y] = ginput(1)
Does it a bug in R2020a? Could someone guide me in the right direction.
  1 个评论
Rishav
Rishav 2024-2-20
Hi Biswaranjan,
I tested the code in MATLAB R2016b and R2020a, and for me it worked fine in both the versions.

请先登录,再进行评论。

回答(1 个)

Walter Roberson
Walter Roberson 2024-2-20
Error in contains (line 36)
tf = ~cellfun(@isempty, strfind(s, pattern));
... Except that contains is a built-in function and so would not show a traceback.
This suggests that you have a third-party function contains somewhere on your MATLAB path.

类别

Help CenterFile Exchange 中查找有关 Geometric Transformation and Image Registration 的更多信息

标签

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by