Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

How to read numbers from this mat file ?

1 view (last 30 days)
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.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 17 Jul 2015
Edited: Azzi Abdelmalek on 17 Jul 2015
a=regexpi(text,'(?<==)[-+\d]+(.)?([\d-+ث]+)?','match','once')
id=~cellfun(@isempty,a(:,1))
b=a(id)
out=str2double(b)

More Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!