Conversion from struct type to array

1 visualizzazione (ultimi 30 giorni)
Hey I have a .mat file which contains ECG data.Where aa contains struct type [15x10000 double]. How can I convert aa into [somethingx1 double] so that I can calculate length of ECG signal ?
aa=load('ff.mat');
aa
  4 Commenti
Fahim Feroje
Fahim Feroje il 7 Feb 2015
I have found it and it is working thanks. :)
karima neffati
karima neffati il 16 Lug 2019
fahim ,please what code you apply to find the 2D representtaion of your ecg signle, i have the same issue

Accedi per commentare.

Risposta accettata

Stephen23
Stephen23 il 7 Feb 2015
Modificato: Stephen23 il 7 Feb 2015
So I saved your uploaded .mat file, and load-ed its contents into my workspace like this:
load('ff.mat')
It turns out that this .mat file contains no structure, only a single variable named val, which is of class double, and has size 15x10000. You request "I want to store this in array", but it already is an array, and a very convenient double array at that. You want a numeric array of data, and you already have one single perfect array of numeric data within that .mat file.
Your statement "I can not understand what value contains in row or column such like time or voltage" is possibly quite true, but do suppose that anyone here on MATLAB Answers can magically know how your data is arranged? To know exactly what the data contains you will have to ask the person who created it, or read their documentation, or perhaps engage in a little bit of reverse engineering of the function that saved that data.
For a start it seems likely that the second dimension is time, although personally I could not find any strictly monotonically increasing values in any one row:
>> all(diff(val)>0,2)
ans =
0
0
0
0
0
0
0
0
0
0
0
0
0
0
So it seems that some kind of time variable is not included in this data. In any case, I would highly recommend that you work through these tutorials:

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by