why showing ??? Undefined function or method 'afb' for input arguments of type 'double'

1 view (last 30 days)
x = rand(1,512); % Test signal
J = 4; % number of stages
[Faf, Fsf] = FSfarras; % 1st stage anal. & synth. filters
[af, sf] = dualfilt1;
w = dualtree(x, J, Faf, af);
y = idualtree(w, J, Fsf, sf);
err = x - y;
max(abs(err))
  1 Comment
Image Analyst
Image Analyst on 13 Oct 2014
afb does not even occur in your code. You forgot to include the error message. All you gave was a small snippet you clipped out but forgot to include the crucial information.

Sign in to comment.

Answers (0)

Categories

Find more on Read, Write, and Modify Image in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!