combining ArrayPlot with ListLinePlot
- To: mathgroup at smc.vnet.net
- Subject: [mg109816] combining ArrayPlot with ListLinePlot
- From: Vadim Zaliva <krokodil at gmail.com>
- Date: Wed, 19 May 2010 07:01:48 -0400 (EDT)
I have a strange problem with combining 2 plots:
ap = ArrayPlot[Transpose[l]]
lp = ListLinePlot[{a, b, c}]
Each of 'ap' and 'lp' is shown correctly. However combining them via:
Show[ap,lp]
always shows just ap.
Dimensions[Transpose[l]] is {44, 2000}
a,b,c have same dimension {2000}
I feel like I am missing something obvious here...
Vadim