moving average in eeglab

2 views (last 30 days)
Chuong
Chuong on 4 Dec 2014
Commented: Chuong on 4 Dec 2014
Greetings, I have 19 22x2000 matrixs and i want make a 22x2000 matrix by moving-average from 19 22x2000 matrixs.A matrix is used for plot erpimage.Is there any simple command or way to do that. Your help is highly appreciated.
Thanks and regards Chuong Tran
  2 Comments
Azzi Abdelmalek
Azzi Abdelmalek on 4 Dec 2014
How these matrices are stored?
Chuong
Chuong on 4 Dec 2014
i have eeg data, it is matrix type. And i extract it follow each event . i have 19 event so i have 19 matrix. i don't need store matrix

Sign in to comment.

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 4 Dec 2014
Look at this example
m1=rand(22,2000);
m2=rand(22,2000);
m3=rand(22,2000);
a={m1,m2,m3}
b=cat(3,a{:});
out=mean(b,3)

Community Treasure Hunt

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

Start Hunting!