Talk:Polynomial regression: Difference between revisions

Content added Content deleted
(→‎Fortran matmul use: new section)
Line 30: Line 30:


--[[User:Raghu|Raghu]] 12:31, 12 July 2011 (UTC)
--[[User:Raghu|Raghu]] 12:31, 12 July 2011 (UTC)

== Fortran matmul use ==

I am re working the Fortran example to use in a Delphi project.

The matrix multiply at the end of the example looks to be in the incorrect order.

I believe it should be.


polyfit = matmul( XTX, matmul(XT, vy))



I would appreciate if somebody with the Fortran language available could confirm.