フィルターのクリア

Cell array to text form

1 回表示 (過去 30 日間)
nayan
nayan 2021 年 3 月 29 日
編集済み: Stephen23 2021 年 3 月 29 日
New to Matlab - guess this will be quite easy for anyone using matlab:
If you have the following in a cell array:
L1125
Y8898
P41
5666
But you want it written in the following format:
'L1125','Y8898','P41','5666'
So basically adding an comma and apostrophe as shown above

回答 (1 件)

Stephen23
Stephen23 2021 年 3 月 29 日
編集済み: Stephen23 2021 年 3 月 29 日
I suspect that you are confusing how data are stored with how they are defined and displayed, but anyway:
C = {'L1125';'Y8898';'P41';'5666'}
C = 4×1 cell array
{'L1125'} {'Y8898'} {'P41' } {'5666' }
S = sprintf(',''%s''',C{:});
S = S(2:end)
S = ''L1125','Y8898','P41','5666''
Note that the leading and trailing single quotes are just an artifact of displaying, they are not actually in the character array (you can easily check this yourself by looking at the character codes).

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by