Stability parameters¶
Stability function
EXAMPLES:
sage: from msinvar import Stability
sage: z=Stability([1,0]); z
Stability function [[1, 0], [1, 1]]
sage: z([1,2]) #slope
0.333333333333
-
class
msinvar.stability.
Stability
(a, b=None)[source]¶ Bases:
object
Stability function corresponding to the vectors
a
,b
.EXAMPLES:
sage: from msinvar import Stability sage: z=Stability([1,0]); z Stability function [[1, 0], [1, 1]] sage: z([1,2]) #slope 0.333333333333 sage: z([1,0],[0,1]) #difference of slopes 1 sage: z.less([1,0],[0,1]) False