I am solving a system of 15 simultaneous linear equations using Solve. On running the code, I get a message saying "A very large output was generated" with options for viewing the ouput. I want to use the solution inside a larger program where the next step relies on the ouput of Solve. I am stuck unless there is a reasonable way for me to capture the output from Solve. Is there a way to do this?
Tell me more
×
Mathematica Stack Exchange is a question and answer site for
users of Mathematica. It's 100% free, no registration required.
|
|
||||
|
Thanks for the suggestions. I first put the set of equations as a
See the tutorial "Solving Linear Systems" (I have version 8) |
|||||
|
|
Is something like this useful?
|
|||
|
|

sol = Solve[...];you'll suppress the output (with;) but everything will be assigned tosol. – b.gatessucks Jan 4 at 22:05