Browse Source

Обновить 'code_MATLAB/Figure_3.m'

Valerii Chirkov 3 years ago
parent
commit
0178dd8849
1 changed files with 5 additions and 5 deletions
  1. 5 5
      code_MATLAB/Figure_2.m

+ 5 - 5
code_MATLAB/Figure_2.m

@@ -1,7 +1,7 @@
-function fig = Figure_2( strNIXFolderPath )
+function fig = Figure_3( strNIXFolderPath )
 
-% Figure_2.m reproduces Figure 2 in the dataset publication
-% fig = Figure_2(strNIXFolderPath) reproduces Figure 2
+% Figure_3.m reproduces Figure 3 in the dataset publication
+% fig = Figure_3(strNIXFolderPath) reproduces Figure 3
 % strNIXFolderPath is the path of the folder with NIX files
 % fig is the figure handle
 %
@@ -71,7 +71,7 @@ for nSubject = 1:9
 end
 
 
-%% Plot Figure 2
+%% Plot Figure 3
 fig = figure;
 
 data = [PSD_face(chs,:); PSD_land(chs,:)];
@@ -87,6 +87,6 @@ g.set_names( 'x', 'Frequency [Hz]', 'y', 'Power [dB]' );
 g.draw();
 
 % Save figure
-print('-dtiff','-r300','fig_2.tiff')
+print('-dtiff','-r300','fig_3.tiff')
 
 end