vigenere密码解密的matlab实现

源代码在线查看: vigvec.m

软件大小: 18 K
上传用户: flyhack007
关键词: vigenere matlab 密码 解密
下载地址: 免注册下载 普通下载 VIP

相关代码

				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);			

相关资源