用Python解决平面方程(如在Matlab中)

时间:2012-08-14 22:44:45

标签: python matlab equation solver plane

我有一个数据集,我正试图从中得到一个平面的方程式。 即:a * x + b * y + c = z 在我的例子中,dT = x,dTa = y,Constant = c,dV = z。

我可以在Matlab中轻松完成这项工作,代码:

dT = [8.5; 3.5; .4; 12.9]

dT =

    8.5000
    3.5000
    0.4000
   12.9000

dTa = [8.5; 18; 22; 34.9]

dTa =

    8.5000
   18.0000
   22.0000
   34.9000

dV = [3; 1; .5; 3]

dV =

    3.0000
    1.0000
    0.5000
    3.0000

Constant = ones(size(dT))

Constant =

     1
     1
     1
     1

coefficients = [dT dTa Constant]\dV

coefficients =

    0.2535
   -0.0392
    1.0895

所以,这里,系数=(a,b,c)。

在Python中有相同的方法吗? 我一直在尝试使用numpy模块(numpy.linalg),但它运行得不好。 首先,矩阵必须是正方形,即便如此,它也不会给出非常好的答案。例如:

错误:

>>> dT
[8.5, 3.5, 0.4, 12.9]
>>> dTa
[8.5, 18, 22, 34.9]
>>> dV
[3, 1, 0.5, 3]
>>> Constant
array([ 1.,  1.,  1.,  1.])
>>> numpy.linalg.solve([dT, dTa, Constant], dV)

Traceback (most recent call last):
  File "<pyshell#45>", line 1, in <module>
    numpy.linalg.solve([dT, dTa, Constant], dV)
  File "C:\Python27\lib\site-packages\numpy\linalg\linalg.py", line 312, in solve
    _assertSquareness(a)
  File "C:\Python27\lib\site-packages\numpy\linalg\linalg.py", line 160, in _assertSquareness
    raise LinAlgError, 'Array must be square'
LinAlgError: Array must be square

Wokrking with square matrix:

>>> dT
array([  8.5,   3.5,  12.9])
>>> dTa
array([  8.5,  18. ,  34.9])
>>> dV
array([3, 1, 3])
>>> Constant
array([ 1.,  1.,  1.])
>>> numpy.linalg.solve([dT, dTa, Constant], dV)
array([ 2.1372267 ,  2.79746835, -1.93469505])

这些甚至都不及我之前获得的值!!

任何想法的家伙?任何建议表示赞赏

2 个答案:

答案 0 :(得分:1)

在第一个示例中,您需要使用numpy.linalg.lstsq。无论哪种方式,您似乎都混淆了矩阵的行和列。使用类似numpy.linalg.solve(zip(dT, dTa, Constant), dV)的内容进行修复。

答案 1 :(得分:0)

所以,我找到了这张照片

并使其适应包含常数。这是我解决的代码:

    X = 0
    XX = 0
    XY = 0
    XZ = 0

    Y = 0
    YY = 0
    YZ = 0

    Z = 0

    for j in range(0, len(dTemp)):
        X = X + dTemp[j]
        XX = XX + (dTemp[j] * dTemp[j])
        XY = XY + (dTemp[j] * dTempA[j])
        XZ = XZ + (dTemp[j] * Applied[j])

        Y = Y + dTempA[j]
        YY = YY + (dTempA[j] * dTempA[j])
        YZ = YZ + (dTempA[j] * Applied[j])

        Z = Z + Applied[j]


    lhs = numpy.array([[XX, XY, X], [XY, YY, Y], [X, Y, 1]]) 
    rhs = numpy.array([XZ,  YZ, Z])

    coefficients = numpy.linalg (lhs, rhs)

    a = coefficients[0]
    b = coefficients[1]
    c = coefficients[2]

我认为这样做了!仍然,值得一点点,但可能是因为Matlab使用的是不同的算法?