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,305 0 View
I attempted to make a privately uploaded text public but a window appeared that said an error occurred. There was no explanation provided as to why there was an error or what might be done to...
05 August 2024 8,025 7 View
Hi everyone, If you have written or come across any papers where Generalised Linear Mixed Models are used to examine intervention (e.g., in mental health) efficacy, could you please share the...
04 August 2024 4,130 4 View
HOW CAN I WRITE A CODE TO USE THE WAVENET TRANSFORM AS A FEATURE EXTRACTION METHOD INSTEAD OF DWT IN MATLAB?
03 August 2024 7,829 0 View
I am new to Micromechanics and having similar problem with understanding the implementation of the formula's. I would appreciate if anyone can guide me on how to go about getting a scalar value...
30 July 2024 969 0 View
I want to write a topic for my PhD thesis in hospitality (hotels), can u please suggest some variables
29 July 2024 9,058 3 View
DOS version.
29 July 2024 6,064 1 View
a 15-page paper
29 July 2024 1,956 5 View
In hirshfeld surface calculation i did not find any red spot in hirshfeld surface, is it ok for research article to write?
28 July 2024 2,988 0 View
Please, what is the memory consumption of the Matlab function quad tree decomposition procedure [S = qtdecomp(I)] with respect to the input set I?
27 July 2024 5,455 2 View
Looking for paper collaboration writers: Collaboration Model 1: 1.1 Based on the chosen topic, complete the paper writing, select an SCI or SSCI Q1 journal, submit using my QRCID, and complete...
27 July 2024 8,965 1 View