vigvec.m

来自「vigenere密码解密的matlab实现」· M 代码 · 共 8 行

M
8
字号
function y=vigvec(txt,m,n)% This function gives the frequencies of the letters a through z that%  occur in positions congruent to n (mod m) in the text string txt.x=choose(txt,m,n);yct=frequency(x);y=yct/sum(yct);

⌨️ 快捷键说明

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