From: Putrisia Hendra on
any one can help me do this????
From: TideMan on
On Aug 5, 3:51 pm, "Putrisia Hendra " <putrisiaza...(a)gmail.com> wrote:
> any one  can help me do this????

Have you read the data from the .txt file into Matlab yet?
If so, you can write them to a .mat file using save:
save('MyEEGData')
and retrieve them using load:
load('MyEEGData')
From: Walter Roberson on
Putrisia Hendra wrote:
> I have a EEG's data in txt format..
> but now, i want to convert it to mat data format
> can i do that?
>
> this is because of Matlab can read more faster if the data i convert to
> MAT data format

Although it would be theoretically possible to do the conversion outside
of matlab, the amount of time it would take to write and debug the
appropriate program would be completely unproductive. Just enter matlab
and load the file; if you will need to load it again another time then
it might be worth saving the contents as a MAT file.
From: Putrisia Hendra on
"Putrisia Hendra " <putrisiazahra(a)gmail.com> wrote in message <i3dcf8$ip$1(a)fred.mathworks.com>...
> any one can help me do this????

i have try it..
it's done..!


Thank You so Much..