qiskit.finance.applications.ising.portfolio_diversification¶
portfolio diversification
Functions
|
Converts an instance of portfolio optimization into a list of Paulis. |
Tries to obtain a feasible solution (in vector form) of an instance of portfolio diversification from the results dictionary. |
|
|
Evaluates an objective function of an instance of portfolio diversification and its solution (in vector form). |
-
get_operator
(rho, n, q)[소스]¶ Converts an instance of portfolio optimization into a list of Paulis.
- 매개변수
rho (
ndarray
) – an asset-to-asset similarity matrix, such as the covariance matrix.n (
int
) – the number of assets.q (
int
) – the number of clusters of assets to output.
- 반환 형식
WeightedPauliOperator
- 반환값
operator for the Hamiltonian
-
get_portfoliodiversification_solution
(rho, n, q, result)[소스]¶ Tries to obtain a feasible solution (in vector form) of an instance of portfolio diversification from the results dictionary.
- 매개변수
rho (
ndarray
) – an asset-to-asset similarity matrix, such as the covariance matrix.n (
int
) – the number of assets.q (
int
) – the number of clusters of assets to output.result (
MinimumEigensolverResult
) – a result obtained by QAOA.run or VQE.run containing key ‘eigvecs’.
- 반환 형식
ndarray
- 반환값
a vector describing the solution.
-
get_portfoliodiversification_value
(rho, n, q, x_state)[소스]¶ Evaluates an objective function of an instance of portfolio diversification and its solution (in vector form).
- 매개변수
rho (
ndarray
) – an asset-to-asset similarity matrix, such as the covariance matrix.n (
int
) – the number of assets.q (
int
) – the number of clusters of assets to output.x_state (
ndarray
) – a vector describing the solution.
- 반환 형식
float
- 반환값
cost of the solution.