usefulstrings.m
来自「JLAB is a set of Matlab functions I have」· M 代码 · 共 19 行
M
19 行
function[]=usefulstrings% USEFULSTRINGS Note on numeric representations of useful strings%% 9 <==> tab.% 10 <==> newline with carriage return.% 13 <==> return to beginning of line% 138 <==> newline without carriage return.% 32 <==> space%% Use real(X) to find the numeric representation of a string X.% Use char(X) to convect numeric array X into a string.%% e.g. char([116 101 120 116]) ='text';% real('text') = [116 101 120 116];% __________________________________________________________________% This is part of JLAB --- type 'help jlab' for more information% (C) 2000, 2004 J.M. Lilly --- type 'help jlab_license' for details
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?