Manu Sutela edited untitled.tex  about 8 years ago

Commit id: d4f5a8dd08255feb16b4b8311ea2df6fe691ca48

deletions | additions      

       

srcw1 = pw_mne*data1;   srcw2 = pw_mne*data2;  \end{verbatim}  We wanted to visualize the source estimates as a function of time. We achieved this with the following script:  \begin{verbatim}  close all  figure(1)  figure(2)  figure(3)  hold on  plot(timeaxis,data1)  pause  maxim = max(srcw1(:));  for i= 100:363  vis_surface_data(srcw1(:,i),0.2,maxim,anat_decim)  figure(3)  plot(i*0.6/363-0.100,-1.5e-11,'*r')  pause(0.001)  disp(i*0.6/363-0.100)  end  \end{verbatim}