(71B: Math ROM): Linear System Solver & Polynomial Solver - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: General Software Library (/forum-13.html) +--- Thread: (71B: Math ROM): Linear System Solver & Polynomial Solver (/thread-18811.html) |
(71B: Math ROM): Linear System Solver & Polynomial Solver - Eddie W. Shore - 09-13-2022 07:05 PM Thank you Bob for the Math ROM! Linear System Solver LINSOLV - 195 bytes Math Rom Required Solves Ax = b Code: 95 OPTION BASE 1 Note: DIM var(n) makes a column matrix n x 1 Polynomial Roots POLYROOT - 373 bytes Math Rom Required Solves p(x) = 0 P = coefficients R = solutions Order of descending order Displays real and complex roots. Code: 100 DESTROY R,P,I,N,U @ OPTION BASE 1 RE: (71B: Math ROM): Linear System Solver & Polynomial Solver - rprosperi - 09-14-2022 12:18 PM (09-13-2022 07:05 PM)Eddie W. Shore Wrote: Thank you Bob for the Math ROM! You're welcome Eddie!! Thanks really need to go to Jeremy Smith, who asked me to donate it to someone that would give it a good home and appreciate it, and I knew you would do that ans also write some posts to share it with the community, exactly like this. Keep them coming... |