Multiple regression: Difference between revisions

flag C, Go, and Python as incorrect -- most others are also wrong and apparently cargo-culted from each other, but we have to start somewhere
imported>Stevegt
(boldface the part about two-dimensional matrix input (most examples do not comply), add example use case and references)
imported>Stevegt
(flag C, Go, and Python as incorrect -- most others are also wrong and apparently cargo-culted from each other, but we have to start somewhere)
Line 621:
 
=={{header|C}}==
 
{{incorrect|C|X input must be a two-dimensional array. Most examples on this page are wrong -- see task description and Talk.}}
 
Using GNU gsl and c99, with the WP data<syntaxhighlight lang="c">#include <stdio.h>
#include <gsl/gsl_matrix.h>
Line 1,492 ⟶ 1,495:
 
=={{header|Go}}==
 
{{incorrect|Go|X input must be a two-dimensional array. Most examples on this page are wrong -- see task description and Talk.}}
 
The [http://en.wikipedia.org/wiki/Ordinary_least_squares#Example_with_real_data example] on WP happens to be a polynomial regression example, and so code from the [[Polynomial regression]] task can be reused here. The only difference here is that givens x and y are computed in a separate function as a task prerequisite.
===Library gonum/matrix===
Line 2,418 ⟶ 2,424:
=={{header|Python}}==
{{libheader|NumPy}}
{{incorrect|Python|X input must be a two-dimensional array. Most examples on this page are wrong -- see task description and Talk.}}
 
'''Method with matrix operations'''
<syntaxhighlight lang="python">import numpy as np
Anonymous user