原创 matlab cellstr

2013-8-3 22:39 1068 18 18 分类: 工程师职场 文集: matlab

S = ['abc', 'defg'; 'hi']

S = 

       abc

       defg

        hi

 

whos S
  Name      Size         Bytes  Class
  S         3x4             24  char arrayThe following command returns a 3-by-1 cell array.c =
 
cellstr(S)
 
c = 
    'abc' 
    'defg'
    'hi'
 
whos c
  Name      Size         Bytes  Class
  c         3x1            198  cell array

文章评论0条评论)

登录后参与讨论
我要评论
0
18
关闭 站长推荐上一条 /2 下一条