N | データ点数\(N\)。 The number of data points \(N\). |
x | 独立変数\(x\)の値\(x_1,\cdots,x_N\)を並べた配列。 An array composed of the values, \(x_1,\cdots,x_N\), of the independent variable \(x\). |
y | 従属変数\(y\)の値\(y_1,\cdots,y_N\)を並べた配列。 An array composed of the values, \(y_1,\cdots,y_N\), of the dependent variable \(y\). |
a | データを直線\(y=ax+b\)でフィットしたときの傾き\(a\)。
傾きは関数fitting_line2を用いて
求めることを想定している。 The slope, \(a\), of the straight line \(y=ax+b\) that best fits the data. The slope is assumed to have been determined by function fitting_line2. |
b | データを直線\(y=ax+b\)でフィットしたときの切片\(b\)。
切片は関数fitting_line2を用いて
求めることを想定している。 The intercept, \(b\), of the straight line \(y=ax+b\) that best fits the data. The intercept is assumed to have been determined by function fitting_line2. |