John's Vademecum

Try to learn something about everything, and everything about something -Thomas Huxley “Darwin's bulldog” (1824-1895)

User Tools

Site Tools


public:calculator:guides:dm15l_miso_solve

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:calculator:guides:dm15l_miso_solve [02/08/22 11:58 BST] johnpublic:calculator:guides:dm15l_miso_solve [06/03/25 06:49 GMT] (current) – external edit 127.0.0.1
Line 2: Line 2:
  
  
-====== DM15L "Miso" Solve ======+====== DM15L "Multi In Single Out" Solve ======
  
 ** Using multi-variable equations in SOLVE ** ** Using multi-variable equations in SOLVE **
Line 10: Line 10:
 [[https://www.hpmuseum.org/cgi-sys/cgiwrap/hpmuseum/articles.cgi?read=556]] [[https://www.hpmuseum.org/cgi-sys/cgiwrap/hpmuseum/articles.cgi?read=556]]
  
 +
 +<QUOTE>
  
  
-<quote> 
 In order to conveniently employ SOLVE or INTEG on the HP-34C/15C/41C for multiple-input, single-output (MISO) user-defined functions, the user's program should emulate the way SOLVE and INTEG manage input variables on the three Pioneer-series models and the HP-33s. In order to conveniently employ SOLVE or INTEG on the HP-34C/15C/41C for multiple-input, single-output (MISO) user-defined functions, the user's program should emulate the way SOLVE and INTEG manage input variables on the three Pioneer-series models and the HP-33s.
  
Line 30: Line 31:
 This procedure utilizes indirect storage to make the RPN program more flexible. SOLVE and INTEG feed the each value of the floating variable as input to the user program, which immediately stores the value indirectly to its user-chosen register. Each variable in the function is then recalled for use in calculations, so the user program need not be structured to receive any particular variable from the stack. This procedure utilizes indirect storage to make the RPN program more flexible. SOLVE and INTEG feed the each value of the floating variable as input to the user program, which immediately stores the value indirectly to its user-chosen register. Each variable in the function is then recalled for use in calculations, so the user program need not be structured to receive any particular variable from the stack.
  
-</quote>+
  
 <code> <code>
Line 127: Line 128:
  
 </code> </code>
 +
 +<cite>
 +[[https://www.hpmuseum.org/cgi-sys/cgiwrap/hpmuseum/articles.cgi?read=556]]
 +</cite>
 +
 +</QUOTE>
  
 ===== Example : OHMS LAW ===== ===== Example : OHMS LAW =====
Line 132: Line 139:
 from [[https://www.hpmuseum.org/forum/thread-1212.html]] from [[https://www.hpmuseum.org/forum/thread-1212.html]]
  
-<code>+<QUOTE> 
 + 
 So, can I write an equation in programming, such as So, can I write an equation in programming, such as
  
Line 142: Line 151:
  
 Code: Code:
-LBL A + 
-STO (i) +  LBL A 
-RCL 0 +  STO (i)  
-RCL* 1 +  RCL 0 
-RCL- 2 +  RCL* 1 
-RTN+  RCL- 2 
 +  RTN
  
 Example: Example:
-<I> STO 0 +  <I> STO 0 
-<E> STO 2 +  <E> STO 2 
-1 STO I +  1 STO I 
-SOLVE A+  SOLVE A
  
-</code>+<cite> from [[https://www.hpmuseum.org/forum/thread-1212.html]] </cite> 
 + 
 +</QUOTE>
  
  
public/calculator/guides/dm15l_miso_solve.1659437933.txt.gz · Last modified: 06/03/25 06:49 GMT (external edit)