All,
I am having trouble plotting nested lists.
I have two data sets (A and B), both with dimensions 5x50.
So far I have
plot = Map[
ListPlot[#, PlotRange -> {0, Max[A]},
AxesOrigin -> {0, 0}, Frame -> True,
FrameLabel -> {"position", "Intensity"}] &, A];
which...