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???
Afficher commentaires plus anciens
% 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
Réponses (0)
Catégories
En savoir plus sur Verification, Validation, and Test dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!