📄 int2text.m
字号:
function y = int2text (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...if ( (x < 0) | (x > 25) ), error('Integer out of range 0 - 26');end;y=char(x + 'a'); %It helps to know Matlab tricks
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -