how to store a QAS expression - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: how to store a QAS expression (/thread-4658.html) |
how to store a QAS expression - hata - 09-06-2015 04:18 PM Hi, how can I store a QAS 'expression' in a variable for later use ? Example: desolve(diff(r) + r = 10, t, r) Many thanks RE: how to store a QAS expression - Arno K - 09-06-2015 09:30 PM You may use a:=STRING(quote(desolve((r'+r) = 10,t,r))), EXPR(a) later provides the solution. Arno RE: how to store a QAS expression - pwarmuth - 09-07-2015 12:12 AM This is cool. I'm socking this one away for later. RE: how to store a QAS expression - hata - 09-07-2015 01:50 PM Yes, it works. Many thanks |