Go to the first, previous, next, last section, table of contents.


omatrix_solve

omatrix_solve(A,X,Y)
:: omatrix_solveは方程式 A*X=Y の解を求めます.
return
リスト
A
行列 or リスト
X
ベクトル or リスト
Y
ベクトル or リスト
[376] omatrix_solve([[1,-1],[2,3]],[x,y],[1,1]);
[[x,4/5],[y,-1/5]]

[377] omatrix_solve([[a,b],[c,d]],[x,y],[1,1]);
[[x,(-b+d)/(d*a-c*b)],[y,(a-c)/(d*a-c*b)]]


Go to the first, previous, next, last section, table of contents.