diff --git a/matlab/reports/@series/series.m b/matlab/reports/@series/series.m
index fe5759a1b998944c42d437b56fe8d5ee0b72ecb0..cb8551c074d575c02becdc9d3d2c0399ef1cae79 100644
--- a/matlab/reports/@series/series.m
+++ b/matlab/reports/@series/series.m
@@ -44,7 +44,7 @@ o.graph_marker_edge_color = 'auto';
 o.graph_marker_face_color = 'auto';
 o.graph_marker_size = 6;
 
-o.table_markers = false;
+o.showTableMarkers = false;
 o.table_neg_color = 'red';
 o.table_pos_color = 'blue';
 
diff --git a/matlab/reports/@series/write.m b/matlab/reports/@series/write.m
index 30549913af5629dd52ae8da2f159d3c985798371..64d658a98a3066c4bcf42b7778030eb724069936 100644
--- a/matlab/reports/@series/write.m
+++ b/matlab/reports/@series/write.m
@@ -42,7 +42,7 @@ assert(~isempty(o.data) && isa(o.data, 'dynSeries'), ...
 assert(ischar(o.color), '@series.write: color must be a string');
 assert(ischar(o.table_neg_color), '@series.write: table_neg_color must be a string');
 assert(ischar(o.table_pos_color), '@series.write: table_pos_color must be a string');
-assert(islogical(o.table_markers), '@series.write: table_markers must be a string');
+assert(islogical(o.showTableMarkers), '@series.write: showTableMarkers must be a string');
 assert(islogical(o.table_align_right), '@series.write: table_align_right must be a string');
 
 %% Write Output
@@ -63,7 +63,7 @@ for i=1:size(data,1)
     thisCellData = round(data(i)*precision)/precision;
 
     fprintf(fid, ' &');
-    if o.table_markers
+    if o.showTableMarkers
         if thisCellData < 0
             fprintf(fid, '\\color{%s}', o.table_neg_color);
         elseif thisCellData > 0
@@ -74,7 +74,7 @@ for i=1:size(data,1)
 
     fprintf(fid, dataString, thisCellData);
 
-    if o.table_markers
+    if o.showTableMarkers
         fprintf(fid, ']');
     end
 end