Clear Filters
Clear Filters

why it is showing Undefined function 'MyEntropy' for input arguments of type 'uint8'.? please say whatt is the error ?

1 view (last 30 days)
clc;
clear all
close all
b=imread('Cameraman.bmp');
MyEntropy(b);
hold on
title('Relative count of pixel for cameraman')
hold off

Answers (1)

Walter Roberson
Walter Roberson on 26 Jan 2016
There is no Mathworks-provided routine named "MyEntropy", and there is no routine by that name in the File Exchange either. The closest is that there is a routine "myEntropy" at the bottom of http://www.mathworks.com/matlabcentral/fileexchange/32428-globalmit-toolbox/content/GlobalMIT_1.0_Release/globalMIT.m but it uses different arguments than your call provides.
You will need to create a file named MyEntropy.m to implement the routine yourself, and that MyEntropy.m will need to be somewhere on your MATLAB path. If you have already written such a routine, use pathtool() to ensure the appropriate directory is on your path.
It is possible that you wrote a MyEntropy function but that it is inside a different .m file. It is not normally possible to call a function inside a different .m file unless the .m file has exactly the same name as what you are trying to call.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!