Execution of script image as a function is not supported
36 views (last 30 days)
Show older comments
MD. MOJAHIDUR RAHMAN
on 25 May 2023
Commented: Amaury Bretin
on 28 Aug 2023
Error in images.internal.basicImageDisplay (line 24)
hh = image(cdata, ...
Error in imshow (line 330)
hh = images.internal.basicImageDisplay(fig_handle,ax_handle,...
Error in image_1 (line 101)
imshow(RGB)
3 Comments
Accepted Answer
Steven Lord
on 25 May 2023
You've likely created your own image.m file that's taking precedence over the image function included in MATLAB. To check this run the following command.
which -all image
If there is an image.m not under matlabroot you should rename that script file.
2 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!