package scipy

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type tag = [
  1. | `OptimizeResult
]
type t = [ `Object | `OptimizeResult ] Obj.t
val of_pyobject : Py.Object.t -> t
val to_pyobject : [> tag ] Obj.t -> Py.Object.t
val x : t -> [ `ArrayLike | `Ndarray | `Object ] Np.Obj.t

Attribute x: get value or raise Not_found if None.

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

Attribute x: get value as an option.

val success : t -> bool

Attribute success: get value or raise Not_found if None.

val success_opt : t -> bool option

Attribute success: get value as an option.

val status : t -> int

Attribute status: get value or raise Not_found if None.

val status_opt : t -> int option

Attribute status: get value as an option.

val message : t -> string

Attribute message: get value or raise Not_found if None.

val message_opt : t -> string option

Attribute message: get value as an option.

val hess_inv : t -> Py.Object.t

Attribute hess_inv: get value or raise Not_found if None.

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

Attribute hess_inv: get value as an option.

val nit : t -> int

Attribute nit: get value or raise Not_found if None.

val nit_opt : t -> int option

Attribute nit: get value as an option.

val maxcv : t -> float

Attribute maxcv: get value or raise Not_found if None.

val maxcv_opt : t -> float option

Attribute maxcv: get value as an option.

val to_string : t -> string

Print the object to a human-readable representation.

val show : t -> string

Print the object to a human-readable representation.

val pp : Stdlib.Format.formatter -> t -> unit

Pretty-print the object to a formatter.