I have to load in 3 big arrays into ROOT these comprise double precision data and are maybe 1000x10000 in size. I then wish to produce a very simple contour plot using this data in Matlab I could do this using the following code:
load x.dat
load t.dat
load h.dat
contour(x,t,h)
Can anybody tell me how to do this in ROOT please?