Matlab编程和其他语言的区别

Matlab

编程和其他语言的区别

 

一、字符和字符串

 

MATLAB

中不管是字符,还是字符串都是用单引号。而在

C

C++

C#

Java

等语言中,

字符是用单引号的,

字符串则必须用双引号。

因此在

MATLAB

中如果需要在字符串中用到单

引号的话,就要用两个单引号来代替。

 

如:

 

>> a='this''is an apple' 

a = 

this'is an apple 

同理,如果字符串中需要双引号的话,可以用四个单引号来代替。如下:

 

>> b='I''''am Tim' 

b = 

I''am Tim 

MATLAB

中的字符串连接,

我们可以使用一对中括号。

当然,

这种连接方式也适用于向量、

矩阵等的连接。如下:

 

>> c=[a b] 

c = 

this'is an appleI''am Tim 

>> a1=[1 2];b1=[3 4]; 

>> c1=[a1 b1] 

c1 = 

     

1     

2     

3     

>> c2=[a1;b1] 

c2 = 

     

1     

     

3     

但是,对于字符串的连接不能使用加号(

+

)来进行。这点和在

C++

C#

Java

等语言中是

不一样的。

因为在

MATLAB

中这些字符串也是以矩阵的形式存储的,

你要是用加号的话,

要两个矩阵的大小一致。比如:

 

>> a2='hello';b2='mustb'; 

>> a2+b2 

ans = 

   

213   

218   

223   

224   

209 

但是,很明显,加完之后都是一系列的值了。本来,这些字符串也是以数值的形式存储的。

而我们要取的字符串中某一个字符的时候,

也是很方便的,

直接像引用矩阵的元素一样。

下:

 

>> a2(1) 

ans = 

>> a2(4) 

ans = 

>> find(a2>'i') 

ans = 

     

3     

4     

可以看到,

a2

里面在字母

i

后面的字符有第

3

4

5

个字符,也就是

llo

了。

 

MATLAB

中要将一个数字转换为字符可以用

num2str

将字符转换为数字可以用

str2num

如下:

 

>> stra1=num2str(a1) 

stra1 = 

1  

>> class(stra1) 

ans = 

char 

>> strb1='[3 4]'; 

>> str2num(strb1) 

ans = 

     

3     

对于

strb1

,我们可以使用

eval

函数,该函数可以将字符串作为一个

MATLAB

命令去执行。

如下:

 

>> p=eval(strb1) 

p = 

     

3     

相当于

p=[3 4]

 

当然了,

C

语言里面的

sprintf

fprintf

函数我们都是可以在

MATLAB

中使用的。比如:

 

>> sprintf('Tim is %d years old.',24) 

ans = 

Tim is 24 years old.

http://t.163.com/event/info/eventId/4884732646678438636  
http://t.163.com/event/info/eventId/-5250861854063157684  
http://t.163.com/event/info/eventId/-5640240628219324082  
http://t.163.com/event/info/eventId/-1582189318931912761  
http://t.163.com/event/info/eventId/3444634233678160511  
http://t.163.com/event/info/eventId/3039165438771392255  
http://t.163.com/event/info/eventId/-8614819315678647190  
http://t.163.com/event/info/eventId/-2635146538826821534  
http://t.163.com/event/info/eventId/-8971895256397278442  
http://t.163.com/event/info/eventId/3710773834458212421  
http://t.163.com/event/info/eventId/-9082063973584036397  
http://t.163.com/event/info/eventId/6996438149601528268  
http://t.163.com/event/info/eventId/-8900834913054993159  
http://t.163.com/event/info/eventId/2176477431754804825  
http://t.163.com/event/info/eventId/3599462923595605691  
http://t.163.com/event/info/eventId/-5218432055600434032  
http://t.163.com/event/info/eventId/4800554699968202823  
http://t.163.com/event/info/eventId/7709263735856299627  
http://t.163.com/event/info/eventId/-5184324767813543268  
http://t.163.com/event/info/eventId/3889601991983307546  
http://t.163.com/event/info/eventId/3859426695197345564  
http://t.163.com/event/info/eventId/2024948945321650773  
http://t.163.com/event/info/eventId/8943732586088977398  
http://t.163.com/event/info/eventId/7212092458428486636  
http://t.163.com/event/info/eventId/-6338284485696545892  
http://t.163.com/event/info/eventId/381340111339762185  
http://t.163.com/event/info/eventId/4817029582588219698  
http://t.163.com/event/info/eventId/8310258640621899566  
http://t.163.com/event/info/eventId/-4667115449168313567  
http://t.163.com/event/info/eventId/6068318732727653454  
http://t.163.com/event/info/eventId/3076524446226029063  
http://t.163.com/event/info/eventId/539367117311284352  
http://t.163.com/event/info/eventId/-3643715918318911216  
http://t.163.com/event/info/eventId/-297543017375336227  
http://t.163.com/event/info/eventId/2945523086256560107  
http://t.163.com/event/info/eventId/-2566783681045019537  
http://t.163.com/event/info/eventId/-5923004785936865384  
http://t.163.com/event/info/eventId/-666258517644460603  
http://t.163.com/event/info/eventId/-203404589411109599  
http://t.163.com/event/info/eventId/-6991185636559612025  
http://t.163.com/event/info/eventId/-8788208852072534890  
http://t.163.com/event/info/eventId/-217778830752747226  
http://t.163.com/event/info/eventId/314505553680312501  
http://t.163.com/event/info/eventId/942341993708952885  
http://t.163.com/event/info/eventId/-4404011427508018465  
http://t.163.com/event/info/eventId/2913259826010191841  
http://t.163.com/event/info/eventId/3015177265890132700  
http://t.163.com/event/info/eventId/-1005092474155355043  
http://t.163.com/event/info/eventId/-8284991148051807656  
http://t.163.com/event/info/eventId/6212290377716739292  
http://t.163.com/event/info/eventId/-8931505258584847154  
http://t.163.com/event/info/eventId/7939192757514447517  
http://t.163.com/event/info/eventId/-9183331307205879205  
http://t.163.com/event/info/eventId/6583332440376036552  
http://t.163.com/event/info/eventId/-3037555972551710200  
http://t.163.com/event/info/eventId/5295731371234197326  
http://t.163.com/event/info/eventId/-4761992603265485348  
http://t.163.com/event/info/eventId/3297628921506157157  
http://t.163.com/event/info/eventId/-5145099890553516536  
http://t.163.com/event/info/eventId/-277650550961454669  
http://t.163.com/event/info/eventId/-5335952286976154103  
http://t.163.com/event/info/eventId/9074439345533757173  
http://t.163.com/event/info/eventId/8702949791119273058  
http://www.aibang.com/show/1539189987-1606214312/product/14348223.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348475.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348397.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348379.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348397.html  
 

http://t.163.com/event/info/eventId/4884732646678438636  
http://t.163.com/event/info/eventId/-5250861854063157684  
http://t.163.com/event/info/eventId/-5640240628219324082  
http://t.163.com/event/info/eventId/-1582189318931912761  
http://t.163.com/event/info/eventId/3444634233678160511  
http://t.163.com/event/info/eventId/3039165438771392255  
http://t.163.com/event/info/eventId/-8614819315678647190  
http://t.163.com/event/info/eventId/-2635146538826821534  
http://t.163.com/event/info/eventId/-8971895256397278442  
http://t.163.com/event/info/eventId/3710773834458212421  
http://t.163.com/event/info/eventId/-9082063973584036397  
http://t.163.com/event/info/eventId/6996438149601528268  
http://t.163.com/event/info/eventId/-8900834913054993159  
http://t.163.com/event/info/eventId/2176477431754804825  
http://t.163.com/event/info/eventId/3599462923595605691  
http://t.163.com/event/info/eventId/-5218432055600434032  
http://t.163.com/event/info/eventId/4800554699968202823  
http://t.163.com/event/info/eventId/7709263735856299627  
http://t.163.com/event/info/eventId/-5184324767813543268  
http://t.163.com/event/info/eventId/3889601991983307546  
http://t.163.com/event/info/eventId/3859426695197345564  
http://t.163.com/event/info/eventId/2024948945321650773  
http://t.163.com/event/info/eventId/8943732586088977398  
http://t.163.com/event/info/eventId/7212092458428486636  
http://t.163.com/event/info/eventId/-6338284485696545892  
http://t.163.com/event/info/eventId/381340111339762185  
http://t.163.com/event/info/eventId/4817029582588219698  
http://t.163.com/event/info/eventId/8310258640621899566  
http://t.163.com/event/info/eventId/-4667115449168313567  
http://t.163.com/event/info/eventId/6068318732727653454  
http://t.163.com/event/info/eventId/3076524446226029063  
http://t.163.com/event/info/eventId/539367117311284352  
http://t.163.com/event/info/eventId/-3643715918318911216  
http://t.163.com/event/info/eventId/-297543017375336227  
http://t.163.com/event/info/eventId/2945523086256560107  
http://t.163.com/event/info/eventId/-2566783681045019537  
http://t.163.com/event/info/eventId/-5923004785936865384  
http://t.163.com/event/info/eventId/-666258517644460603  
http://t.163.com/event/info/eventId/-203404589411109599  
http://t.163.com/event/info/eventId/-6991185636559612025  
http://t.163.com/event/info/eventId/-8788208852072534890  
http://t.163.com/event/info/eventId/-217778830752747226  
http://t.163.com/event/info/eventId/314505553680312501  
http://t.163.com/event/info/eventId/942341993708952885  
http://t.163.com/event/info/eventId/-4404011427508018465  
http://t.163.com/event/info/eventId/2913259826010191841  
http://t.163.com/event/info/eventId/3015177265890132700  
http://t.163.com/event/info/eventId/-1005092474155355043  
http://t.163.com/event/info/eventId/-8284991148051807656  
http://t.163.com/event/info/eventId/6212290377716739292  
http://t.163.com/event/info/eventId/-8931505258584847154  
http://t.163.com/event/info/eventId/7939192757514447517  
http://t.163.com/event/info/eventId/-9183331307205879205  
http://t.163.com/event/info/eventId/6583332440376036552  
http://t.163.com/event/info/eventId/-3037555972551710200  
http://t.163.com/event/info/eventId/5295731371234197326  
http://t.163.com/event/info/eventId/-4761992603265485348  
http://t.163.com/event/info/eventId/3297628921506157157  
http://t.163.com/event/info/eventId/-5145099890553516536  
http://t.163.com/event/info/eventId/-277650550961454669  
http://t.163.com/event/info/eventId/-5335952286976154103  
http://t.163.com/event/info/eventId/9074439345533757173  
http://t.163.com/event/info/eventId/8702949791119273058  
http://www.aibang.com/show/1539189987-1606214312/product/14348223.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348475.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348397.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348379.html  
http://www.aibang.com/show/1539189987-1606214312/product/14348397.html  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值