User Portlet User Portlet

Discussions
I have two columns of data for example: Numer1= Column[{1,2,3,4,5}] and Denom2=Column[{6,7,8,9,10}] I want to divide for example: 1/6 and 2/7 and 3/8 and so on.... but when I use the divide function it just lists the numbers in column form on top...
I am trying to calculate the variance of a list of fit residuals; I've run this loop for 49 regressions : residuals = Table[thisModel = LinearModelFit[data[[All, {1, i}]], x, x]; {thisModel[ "FitResiduals"]}, {i, 49}] residuals = residuals[[2...