Texas TI-86 用户手册

下载
页码 431
362
     Chapter 20: A to Z Function and Instruction Reference
20ATOZ.DOC   TI-86, Chap 20, US English   Bob Fedorisko   Revised: 02/13/01 2:42 PM   Printed: 02/13/01 3:05 PM   Page 362 of 118
Stop
‡ program editor
CTL menu
Stop
Ends program execution and returns to the home
screen.
Program segment:
   
©
:Input N
:If N==999
:Stop
   
©
Store to variable:
 
X
number
 
 
variable
   or   
(
expression
)
 
 
variable
string
 
 
variable
list
 
 
variable
vector
 
 
variable
matrix
 
 
variable
Stores the specified argument to variable.
10¶A:4¹A b
40
"Hello"¶STR b
Hello        
{1,2,3}¶L1 b
{1 2 3}
[1,2,3]¶VEC b
[1 2 3]
[[1,2,3][4,5,6]]¶MAT b
[[1 2 3] 
[4 5 6]]
StPic
† GRAPH menu
StPic 
pictureName
Stores a picture of the current graph screen to
pictureName
.
StReg(
STAT CALC menu
StReg(
variable
)
Stores the most recently calculated regression equation
to variable. This lets you save a regression equation by
storing it to any variable as opposed to a built-in
equation variable.
{1,2,3,4,5}¶L1 b
{1 2 3 4 5}
{1,20,55,230,742}¶L2 b
{1 20 55 230 742}
ExpR L1,L2:StReg(EQ) b
Done
8¶x b
8
Rcl EQ b
.41138948780597¹4.7879605684671^x
b
113620.765451
Use N==999,
not N=999.
-
 
 EQ 
b
 recalls the
equation. Then 
b
 evaluates
it at the current value of x.