MATLAB: Is LinearModel.fit available in Matlab 2010a

linearmodel.fitstatistical toolbox

I'm trying to use LinearModel.fit but it does not look like Matlab can find it, although I have the Statistical Toolbox:
EDU>> license('test','statistics_toolbox')
ans =
1
Here's what I'm getting:
EDU>> load BCCdata EDU>> x=WS_rm; EDU>> y=Net_ch4; EDU>> mdl = LinearModel.fit(x, y) ??? Undefined variable "LinearModel" or class "LinearModel.fit".
Any idea? Am I doing something wrong or is this not available for 2010a?

Best Answer

I think the LinearModel class is more recent than that version. I did some poking around in the documentation archives: http://www.mathworks.com/help/doc-archives.html, and I think it was introduced in R2012a.
Related Question