I have the EEG signal data set in .mat (matlab) format I want to write it into excel format. how can I do?
Hi,
Have you tryed xlswrite ?
xlswrite(filename,A,sheet,xlRange)
Regards,
Alain
I wrote this Command:
A= load('C:\c1_edfm');
xlswrite('C:\c1.xlsx',A);
It should be OK.
Is A a matrix ?
My method is to save your data as a text file (.txt) and then import it into Excel.
hi Alain thanks, ya A is Matrix, but it doesnt work shows error
----
Hi Elizabeth, can you suggest me how do save data to txt file.
I think you can save data directly in Excel :
file_name='result';
myarray=rand(12,4);
xlswrite(file_name,myarray);
If you have some string in data :
do not forget to wrtite them with brackets :
mydata={'hello','world'}
xlswrite(file_name,mydata,'A1:A2');
Hi Alain, as the data size was big; columns are 1000000 excel cannot write so I wrote it into .dat using , dlmwrite.
is there any way to load data into excel; xlxwrite shows error.
Mohammad - How many rows do you have? If you have less than 256, you could switch your rows and columns before you write to excel.
As for writing to a text file, here is a sample:
%% Initialize the data file
fileName = 'file.txt';
pathName = 'C:\...';
fileID = fopen(pathName, 'wt');
%% Write an example matrix A of doubles to file
[len,wid]=size(A)
for i=1:len
for j =1:wid
tempVal = A(i,j);
fprintf(fileID, '3.3g\t', tempVal);
end
%Close file
fclose all;
How do I find optimal features from EEG time series dataset. Is there any software that can help to find the feature set from EEG dataset?
11 December 2016 6,271 0 View
I have conducted and published a systematic review and meta-analysis research with the topic related to public health and health pomotion (protocol was registed in PROSPERO). Now we want to...
03 March 2021 8,920 3 View
Hi everyone, I'm studying Marketing and I would like to write my PhD thesis on the topic of pricing. Any specific ideas?
02 March 2021 9,706 5 View
We are analysing scientific reports at University in great detail, so I wanted to find a scientific report about how to write a scientific report. Including detail such as what information to put...
02 March 2021 7,602 4 View
We have one plant, the local people using this for controlling blood sugar, the toxicity and antidiabetic activity of the plant is not reported yet, please guide from whag should be the process ?...
02 March 2021 2,300 1 View
How do I do energy minimization in lammps with NVT ensemble ? I am using the following command and it does not seem to work. It stops at extremely high energy and gives me the error zero search...
01 March 2021 2,294 3 View
01 March 2021 3,905 5 View
I am a second-year grad student. I am finding it difficult finding time to read literature and write (things like qualifying exam, thesis, grants). I find myself so busy with bench work that I...
01 March 2021 3,325 4 View
Dear Researchers I am trying to perform a PIL simulation using STM32F4 Discovery board and comunication serial USB TO TTL. During simulation I receive the following timeout error: An error...
01 March 2021 2,327 1 View
To dear Researchers, I was analyzing a series of concentration for estimation of Real-Time PCR efficiency. The concentration was 1:10. I used MS-excel to evaluate Slope. The result of slope was -8...
01 March 2021 8,683 4 View
Hi everyone, I would like to ask how I can download BibExcel software for MacOs? There are some links which are supported by Windows but I could not find it for Mac. or is there any other software...
01 March 2021 652 1 View