Error message when rim 'plot' or 'imshow', etc
이전 댓글 표시
Just updated from 2019a to 2025a, both on the same PC running Windows 10, with Inter(R) UHD Graphics 630, driver version 31.0.101.2134. Error appeared when testing, e.g. plot(randn(1, 64)):
Warning: Error in state of SceneNode.
Invalid type of input arguments (should be uint64)
Error using +
Invalid type of input arguments (should be uint64)
Error in matlab.graphics.interaction.graphicscontrol.InteractionsManager/registerInteraction
Error in matlab.graphics.interaction.interactioncontainers.BaseAxesInteractionContainer/createDefaultWebAxesInteractions
Error in matlab.graphics.interaction.interactioncontainers.CartesianAxesInteractionContainer/createDefaultWebAxesInteractions
Error in matlab.graphics.interaction.interactioncontainers.BaseAxesInteractionContainer/setupInteractions
Error in matlab.graphics.interaction.internal.UnifiedAxesInteractions.createDefaultInteractionsOnAxes
Error in matlab.graphics.interaction.internal.UnifiedAxesInteractions.createDefaultInteractionsInSync
Error in matlab.graphics.interaction.internal.UnifiedAxesInteractions.createDefaultInteractions>@()matlab.graphics.interaction.internal.UnifiedAxesInteractions.createDefaultInteractionsInSync(ax,is2dim,numDataSpaces)
댓글 수: 4
Contact MATLAB Technical Support:
Walter Roberson
2025년 8월 6일
The most common cause of this sort of problem, is if you accidently have a third-party function with the same name as a Mathworks function.
Experiment by creating a new directory and cd'ing to the directory, and doing
restoredefaultcache; rehash toolboxcache
and trying the plotting again. If the plotting works then you have an interfering function.
Zhengchao
2025년 8월 7일
Can you try casting the data input to the function to uint64 type? For example:
plot(uint64(256*sin(linspace(0,pi,1000))))
답변 (1개)
Zhengchao
2025년 8월 8일
이동: Walter Roberson
2025년 8월 8일
0 개 추천
댓글 수: 1
Image Analyst
2025년 8월 10일
Are you saying that you had folders in your search path that had parentheses in their name, after the plus word? Like "C:\Program FIles\YourBadApp\plus()\something" ?
And you used the SetPath button on the Home tab of the tool ribbon to remove folders that had plus() in the folder name? And then it worked OK? So I guess your "conflicting" plot.m file was in the plus() folder, right?
카테고리
도움말 센터 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
