Page 7-6 of the 35s manual describes use of the built-in equations from the keyboard. I would like to use the "2x2 lin solve" equation in a program. How do I do that?
Solving with the built-in equations of the 35s
|
|
« Next Oldest | Next Newest »
|
▼ ▼
Post: #7
10-16-2012, 08:05 AM
This should show how. Good to finally meet you a few weeks ago in Nashville! ▼
Post: #8
10-16-2012, 09:24 PM
Ah, I mis-read your original question. You cannot use one of the built-in equations in a user program. Sorry!
Post: #9
10-16-2012, 09:02 PM
I don't think you do--I think you can only type your own equations into a program, not use the ones that are built in. ▼
Post: #10
10-17-2012, 03:17 PM
You cannot use equations from the 35s equation list in your own programs. But solving a 2x2 system is so trivial that it can be done in a very short user routine: RCL AThis returns the two unknowns in X and Y.
Actually you can also do this in just two lines, using the EQN-feature: ([A,D]*[F,-C])/([A,B]*[E,-D]>G)Type "STO G" to enter ">G". Please also note that the minuses are unary (signs, not operators). This solution also works for A=0. ;-) Dieter
Edited: 17 Oct 2012, 3:28 p.m. |