Can anyone explain what this warning means and how to avoid it:
warning: opengl_selector::select: selection buffer overflow
warning: called from
ginput at line 88 column 7
As stated the warning occurs after 15-20 call to ginput. Each call requests only a single value:
while button==1
kount=kount+1
[x(kount),y(kount),button]=ginput(1);
## show point
plot(x(kount),y(kount),'k.','markersize',12);
endwhile
Thanks