cell consisting letters and numbers to matrix double

2 ビュー (過去 30 日間)
Lotte van de Venis
Lotte van de Venis 2017 年 10 月 27 日
コメント済み: Cedric 2017 年 10 月 29 日
Hi,
I have a matrix containing 840x1 cells. These consist of 3 letters followed by numbers. Is there a way to convert this into 840x1 double?
I have tried str2double, but these returns only NaN. I tried several combinations with num2str, char, celstr, but i can't figure it out.
Thanks in advance!
  2 件のコメント
Jan
Jan 2017 年 10 月 27 日
Please give any meaningful example. What is the wanted result for 'ABC123'? How do you want to convert this to a number?
Walter Roberson
Walter Roberson 2017 年 10 月 28 日
xlswrite('Name Excelfile.xlsx', [num2cell(Group), num2cell(Trail), mTrail], 1)

サインインしてコメントする。

回答 (1 件)

Cedric
Cedric 2017 年 10 月 27 日
編集済み: Cedric 2017 年 10 月 27 日
>> C = {'ABC8', 'CAD90.87', 'ZED40'} ;
>> C2 = cellfun( @(s)s(4:end), C, 'UniformOutput', false ) ;
>> str2double( C2 )
ans =
8.0000 90.8700 40.0000
EDIT 1: here is a solution that extracts both parts:
>> data = textscan( [C{:}], '%3s%f' ) ;
With that you get
>> data
data =
1×2 cell array
{3×1 cell} {3×1 double}
>> data{1}
ans =
3×1 cell array
{'ABC'}
{'CAD'}
{'ZED'}
>> data{2}
ans =
8.0000
90.8700
40.0000
  4 件のコメント
Cedric
Cedric 2017 年 10 月 27 日
Please see my updated answer.
Cedric
Cedric 2017 年 10 月 29 日
Does it solve your problem of splitting alpha codes and numbers or do you still have a problem with that?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by