⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lfsrsolve.m

📁 vigenere密码解密的matlab实现
💻 M
字号:
function y = lfsrsolve(v,n);% Given a guess n for the length of the recurrence that generates% the binary vector v, this function returns the coefficients of the% recurrence.v=v(:);vln=length(v);if (vln < 2*n),   error('The vector v needs to be atleast length 2n');endM=circmat(v,n);Mdet=det(M);x=v(n+1:2*n);Minv=inv(M);Minv=mod(round(Minv*Mdet),2);% A note: Technically, the round() function should never show up, but% since Matlab does double precision arithmetic to calculate the inverse matrix% we need to bring the result back to integer values so we can perform a meaningful% mod operation. As long as this routine is not used on huge examples, it should% be oky=mod(Minv*x,2);y=y(:)';   % Convert the output to a row vector

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -