expreduce icon indicating copy to clipboard operation
expreduce copied to clipboard

LinearSolve[] support

Open darvin opened this issue 7 years ago • 0 comments

In[242]:= LinearSolve[{{a, b}, {c, d}}, {x, y}]                                                  

            d x - b y    c x - a y
Out[242]= {------------, ---------}
           -(b c) + a d  b c - a d

In[243]:= ??LinearSolve                                                                          
LinearSolve[m, b] finds an x that solves the matrix equation m . x == b. 
LinearSolve[m] generates a LinearSolveFunction[…]
     that can be applied repeatedly to different b. 

darvin avatar May 26 '18 21:05 darvin