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

📄 int2text1.m

📁 vigenere密码解密的matlab实现
💻 M
字号:
function y = int2text1 (x)% This function takes the number in the variable x and converts % it to a character y. % The convention for this function is%   a  <-- 0%   b  <-- 1%   and so on...j=1;flag=1;xv=x;while flag,   xrem=rem(xv,100);   xv=floor(xv/100);   xstore(j)=xrem;   j=j+1;   if xv<1,      flag=0;   end;end;xstore=xstore(:);yvec=flipud(xstore)';y=char(yvec+'a'-1);ind=find(y=='`');y(ind)=' ';

⌨️ 快捷键说明

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