我正在使用hold(Ax, 'on')
. 为了管理每次添加新行时更新的图例,我将我的图例附加为:
reshape(sprintf('Zone #%02d',1:ii), 8, ii)'
ii
循环迭代计数器在哪里。这会将图例条目生成为,Zone #01
等Zone #02
。Zone #03
现在
,我想生成图例条目而不是上面Zone # 1 and 2 Intersection
的条目比如下图:Zone # 2 and 3 Intersection
Zone # 3 and 4 Intersection
reshape(sprintf('Zone # %01d and %01d Intersection', 1:ii, 2:ii + 1), 27, ii)
ii
3
你能看出我哪里出错了吗?一如既往的感谢!