package scipy

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Optimize.OptimizeResultSource

Sourcetype tag = [
  1. | `OptimizeResult
]
Sourcetype t = [ `Object | `OptimizeResult ] Obj.t
Sourceval of_pyobject : Py.Object.t -> t
Sourceval to_pyobject : [> tag ] Obj.t -> Py.Object.t
Sourceval x : t -> [ `ArrayLike | `Ndarray | `Object ] Np.Obj.t

Attribute x: get value or raise Not_found if None.

Sourceval x_opt : t -> [ `ArrayLike | `Ndarray | `Object ] Np.Obj.t option

Attribute x: get value as an option.

Sourceval success : t -> bool

Attribute success: get value or raise Not_found if None.

Sourceval success_opt : t -> bool option

Attribute success: get value as an option.

Sourceval status : t -> int

Attribute status: get value or raise Not_found if None.

Sourceval status_opt : t -> int option

Attribute status: get value as an option.

Sourceval message : t -> string

Attribute message: get value or raise Not_found if None.

Sourceval message_opt : t -> string option

Attribute message: get value as an option.

Sourceval hess_inv : t -> Py.Object.t

Attribute hess_inv: get value or raise Not_found if None.

Sourceval hess_inv_opt : t -> Py.Object.t option

Attribute hess_inv: get value as an option.

Sourceval nit : t -> int

Attribute nit: get value or raise Not_found if None.

Sourceval nit_opt : t -> int option

Attribute nit: get value as an option.

Sourceval maxcv : t -> float

Attribute maxcv: get value or raise Not_found if None.

Sourceval maxcv_opt : t -> float option

Attribute maxcv: get value as an option.

Sourceval to_string : t -> string

Print the object to a human-readable representation.

Sourceval show : t -> string

Print the object to a human-readable representation.

Sourceval pp : Format.formatter -> t -> unit

Pretty-print the object to a formatter.