镇场诗:慈心积善,为有缘人做大证明。以身作则,光照大千世界。
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Character Strings 字符串
A character string is a sequence of any number of characters enclosed in single quotes. You can assign a string to a variable.
一个字符串就是用两个单引号围起来的,许多个字符。
myText = ‘Hello, world‘;
If the text includes a single quote, use two single quotes within the definition.
如果你文本中包含了单引号,那么按照规定,你需要两个单引号联合表示。
otherText = ‘You‘‘re right‘
otherText =
You‘re right
myText and otherText are arrays, like all MATLAB? variables. Their class or data type is char, which is short for character.
myText 和 otherText都是数组,就像所有MATLAB的变量一样。他们类或者说数据类型是char,短字符.~~~~(>_<)~~~~
whos myText
Name Size Bytes Class Attributes
myText 1x12 24 char
You can concatenate strings with square brackets, just as you concatenate numeric arrays.
你可以用方括号来连接字符串,就想你连接数字类型得到数组一样。
longText = [myText,‘ - ‘,otherText]
longText =
Hello, world - You‘re right
To convert numeric values to strings, use functions, such as num2str or int2str.
为了转换数值型变量到字符串型的,我们可以用函数,例如num2str 或者int2str.
f = 71;
c = (f-32)/1.8;
tempText = [‘Temperature is ‘,num2str(c),‘C‘]
tempText =
Temperature is 21.6667C
好强呀。。。;-)
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
为了让每个新手使用MATLAB这一优秀的软件,所以翻译matlab, 借助了翻译软件和实践时候的经验,愿所有看了这篇翻译的人能得到一些启示。
因为是为了帮助新手入门,所以我努力以人为本,说新手听得懂的语言,绝不一一对译。n(*≧▽≦*)n
如果我的翻译有错误,请指正。我会不断地进步并更新改进翻译的。请务必不吝赐教。在下感激不尽。
感恩众生与使用的软件,金山词霸与microsoft word。
注:此文仅用作科研学习使用。如果我侵犯了您的权益,请告知。看到您的告知后,我将及时作出处理。
此文为原创,未经同意不得转载。所以转载到其他网站前,请询问在下。