📄 ex3_strings.m
字号:
strA='This is a string.'
strB=' OK. '; strC=[strA, strB, strA]
strC=[strA; strB; strA]
strD=str2mat(strA, strB, strA)
strE='In this string, single quote '' is defined.'
k=findstr(strA,'s')
k=findstr(strA,'S')
strF=strrep(strA,'s','S')
k=length(strA)
strG=strF(find(strF~=' '))
d=double(strA)
strA1=char(d)
mat2str(A)
mat2str(A4)
eval(ans)
Ax=reshape(ans,3,3,3);
A=[1.1:0.1:1.5; 2.1:0.1:2.5]; num2str(A)
int2str(A)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -