フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to read numbers from this mat file ?

1 回表示 (過去 30 日間)
Karthik
Karthik 2015 年 7 月 17 日
編集済み: Stephen23 2015 年 7 月 17 日
Hi, how can I read the numbers from this .mat file (file attached). Currently, I was using the following code. The problem is its reading 2.3*e-4 as only 2.3. The part with e-4 is missing.
a=regexp(text,'(?<==)\d+(.)?(\d+)?','match','once')
id=~cellfun(@isempty,a(:,1))
a=str2double(a(id))
Thanks.
  1 件のコメント
Stephen23
Stephen23 2015 年 7 月 17 日
編集済み: Stephen23 2015 年 7 月 17 日

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 7 月 17 日
編集済み: Azzi Abdelmalek 2015 年 7 月 17 日
a=regexpi(text,'(?<==)[-+\d]+(.)?([\d-+ث]+)?','match','once')
id=~cellfun(@isempty,a(:,1))
b=a(id)
out=str2double(b)

その他の回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by