wcodemat and uint8 error

5 views (last 30 days)
I am getting the following while trying to run my code. Could anyone explain the reason?
Undefined function 'wcodemat' for input arguments of type 'uint8'

Accepted Answer

Geoff Hayes
Geoff Hayes on 21 Jun 2014
What this error message is telling you is that the function wcodemat, which you are using somewhere in your code, is not defined (or not found). This function is part of the Wavelet Toolbox. Have you installed this toolbox?
In the Command Window type the following
which wcodemat
ver
The first command will try to locate this function. I don't have this toolbox so the function returns
'wcodemat' not found.
ver will return version information for your MATLAB and list all toolboxes that have been installed. Check to see if the Wavelet Toolbox is in that list.
  3 Comments
Geoff Hayes
Geoff Hayes on 22 Jun 2014
Hi Faruk - no, I don't know how to use this package. Note that it is NOT the The Mathworks Wavelet Toolbox, so it may not have the wcodemat that you are expecting.
Mohammad Faruk Hasan
Mohammad Faruk Hasan on 22 Jun 2014
Ok. Thank you. I hope I will find the right package. :)

Sign in to comment.

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!