Skip to content

Commit

Permalink
added remaining fields to fusion frame in frameaccel
Browse files Browse the repository at this point in the history
  • Loading branch information
allthatsounds committed Oct 16, 2023
1 parent 9bfc58f commit 1fcc752
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions frames/frameaccel.m
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,19 @@
F.fuana = comp_fuana(F, eye(L));
F.fusyn = comp_fusyn(F, eye(L));
F.localdual = comp_fudual(F, eye(L));
[F.A, F.B] = framebounds(F.frameoperator);
F.istight = 0;
F.isparseval = 0;
F.isuniform = 0;
if isequal(F.A, F.B)
F.istight = 1;
if F.A == 1
F.isparseval = 0;
end
end
if sum(F.w)/length(w) == 1
F.isuniform = 1;
end
return;
end;

Expand Down

0 comments on commit 1fcc752

Please sign in to comment.