this is because of Matlab can read more faster if the data i convert to MAT data format
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')
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.
i have try it..
it's done..!
Thank You so Much..