Question: extract the values from a B-spline plot?

I am new to Maple 13, I have a data set that I can fit a b-spline curve to and out put the polynomials. I plot the the curve but I want the predicted values of the curve so I can compare them to other predicted values from other programs (eg SAS). I want to plot all the curves from each program in Excel against to actual values. Here is my worksheet for reference: Loading CurveFitting Loading plots Loading plottools > ImportMatrix("C:\\Documents and Settings\\phillipsa\\My Documents\\Freeze-thaw_paper\\winter_soilT.csv", source = delimited, delimiter = ",", format = rectangular, datatype = float[8], transpose = false, skiplines = 0); > SoilT := : 'SoilT'; > SoilT; > c1 := BSplineCurve(SoilT, q); > > plot({c1});
Please Wait...