B

b                  y= intercept               

 

Module: ti_plotlib

Syntax: plt.b                  y= intercept

Description: After plt.linreg() is executed in a program, the computed values of slope, a, and intercept , b, are stored in plt.a and plt.b.

Default values: = 0.0

Example:

See sample program LINREGR.

y N

[Fns...]>Modul or »
5:ti_plotlib...> Properties
6:b


import commands can be found in y N or in the
ti_plotlib Setup menu.

 

bin(integer)

 

Module: Built-in

Syntax: bin(integer)

Description: Displays binary format of the integer argument.

See Python documentation for more details.

Example:

>>> bin(2)

'0b10'

>>> bin(4)

'0b100'

y N

 

break

 

Keyword

Description: Use break to break out of a for or while loop.

y N