Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/image-processing/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
矩阵形式的非线性方程组-Python_Python_Matrix_Nonlinear Equation - Fatal编程技术网

矩阵形式的非线性方程组-Python

矩阵形式的非线性方程组-Python,python,matrix,nonlinear-equation,Python,Matrix,Nonlinear Equation,我正在用python处理矩阵形式的非线性方程组,即: F=Af+b(F) 其中F是我的uknown向量9x1,A是已知的9x9矩阵,F是已知的9x1向量,b(F)是9x1向量,它是F的分量的非线性函数 我怎样才能把这整件事放在非线性方程求解器中?不确定我是否正确理解了你的问题。检查这是否对你有帮助 import numpy as np A = np.random.randn(9, 9) f = np.random.randn(9,1) b_f = np.random.randn(9,1) F

我正在用python处理矩阵形式的非线性方程组,即:

F=Af+b(F)

其中F是我的uknown向量9x1,A是已知的9x9矩阵,F是已知的9x1向量,b(F)是9x1向量,它是F的分量的非线性函数


我怎样才能把这整件事放在非线性方程求解器中?

不确定我是否正确理解了你的问题。检查这是否对你有帮助

import numpy as np

A = np.random.randn(9, 9)
f = np.random.randn(9,1)
b_f = np.random.randn(9,1)

F = np.dot(A, f) + b_f

不,我的问题是如何解非线性方程组F-Af-b(F)=0