I need Matlab code for Kekre transform. the generated Kekre transform should be orthogonal. I have foll code, but it doesnt generate orthogonal kekre transform. Any help plz???
Show older comments
% code to generate kekre transform
n1=64; K=zeros(n1); for i=1:n1 for j=i:n1 K(i,j)=1; end end for i=2:n1 K(i,i-1)=(-n1)+(i-1); end
Answers (0)
Categories
Find more on Verification, Validation, and Test 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!