|
98 | 98 | % Plot the data |
99 | 99 | %% |
100 | 100 | idxYA = 0; |
101 | | -xTickList = []; |
102 | | -yTickList = []; |
| 101 | +xTickList = [0]; |
| 102 | +yTickList = [0]; |
103 | 103 | for idx=1:1:length(fbosModels) |
104 | 104 | if( contains(fbosModels(idx).footwear,'Footwear') ... |
105 | 105 | && contains(fbosModels(idx).stance,'2Feet') ... |
|
140 | 140 | xTickList = unique(round(sort(xTickList),2)); |
141 | 141 | yTickList = unique(round(sort(yTickList),2)); |
142 | 142 |
|
143 | | -% if(contains(fbosModels(idx).ageGroup,'YoungAdults')) |
144 | | -% idxYAN = idxYA/3; |
145 | | -% lineColor = [1,0,0].*idxYAN + [0,0,1].*(1-idxYAN); |
146 | | -% displayName = [fbosModels(idx).footwear,' ',... |
147 | | -% fbosModels(idx).stance,' (n=',num2str(fbosModels(idx).n),')']; |
148 | | -% displayName = [displayName, '-',fbosModels(idx).study]; |
149 | | -% |
150 | | -% subplot('Position',reshape(subPlotPanel(1,2,:),1,4)); |
151 | | -% plot(fbosModels(idx).data(:,1),... |
152 | | -% fbosModels(idx).data(:,2),'-',... |
153 | | -% 'Color',lineColor,... |
154 | | -% 'DisplayName',displayName,... |
155 | | -% 'LineWidth',2); |
156 | | -% hold on; |
157 | | -% |
158 | | -% idxYA=idxYA+1; |
159 | | -% end |
160 | | - |
161 | 143 | end |
162 | 144 |
|
163 | 145 | subplot('Position',reshape(subPlotPanel(1,1,:),1,4)); |
|
178 | 160 | xlim(xExt); |
179 | 161 | ylim(yExt); |
180 | 162 |
|
| 163 | + plot([min(xExt),max(xExt)],[0,0],'-','Color',[1,1,1].*0.75,... |
| 164 | + 'HandleVisibility','off'); |
| 165 | + hold on; |
| 166 | + plot([0,0],[min(yExt),max(yExt)],'-','Color',[1,1,1].*0.75,... |
| 167 | + 'HandleVisibility','off'); |
| 168 | + hold on; |
| 169 | + |
181 | 170 | xticks(xTickList); |
182 | 171 | xtickangle(90); |
183 | 172 | yticks(yTickList); |
|
187 | 176 | title({'A. Comparison of 2-foot shod fBOS profiles of',... |
188 | 177 | 'younger, middle-aged, and older adults'}); |
189 | 178 |
|
190 | | -% subplot('Position',reshape(subPlotPanel(1,2,:),1,4)); |
191 | | -% box off; |
192 | | -% legend; |
193 | | -% legend box off; |
194 | | -% xlim([-0.26,0.15]); |
195 | | -% ylim([-0.55,0.25]); |
196 | | -% xlabel('Norm. X (x/foot-width)'); |
197 | | -% ylabel('Norm. Y (y/foot-length)'); |
198 | | -% title({'B. Comparison of Young fBOS profiles when',... |
199 | | -% 'barefoot/shod, and 1-foot/2-feet'}); |
200 | | - |
201 | 179 |
|
202 | 180 | figH=plotExportConfig(figH,pageWidth,pageHeight); |
203 | 181 |
|
|
0 commit comments