@@ -107,7 +107,7 @@ def optimize(self, r, cov, symbols=None):
107
107
self .optimized_weights = self .optimized_sol .x
108
108
self .optimized_sharpe_ratio = - self .optimized_sol .fun
109
109
self .optimized_portfolio_yield = np .sum (self .optimized_weights * self .r )
110
- sqweights = np .matmul (
110
+ sqweights = np .dot (
111
111
np .expand_dims (self .optimized_weights , axis = 1 ),
112
112
np .expand_dims (self .optimized_weights , axis = 0 )
113
113
)
@@ -158,7 +158,7 @@ def optimize(self, r, cov, symbols=None):
158
158
self .optimized_weights = self .optimized_unnormalized_weights [:- 1 ] / np .sum (self .optimized_unnormalized_weights [:- 1 ])
159
159
self .optimized_costfunction = - self .optimized_sol .fun
160
160
self .optimized_portfolio_yield = np .sum (self .optimized_weights * self .r )
161
- sqweights = np .matmul (
161
+ sqweights = np .dot (
162
162
np .expand_dims (self .optimized_weights , axis = 1 ),
163
163
np .expand_dims (self .optimized_weights , axis = 0 )
164
164
)
@@ -212,7 +212,7 @@ def optimize(self, r, cov, symbols=None):
212
212
self .optimized_weights = self .optimized_unnormalized_weights [:- 1 ] / np .sum (self .optimized_unnormalized_weights [:- 1 ])
213
213
self .optimized_costfunction = - self .optimized_sol .fun
214
214
self .optimized_portfolio_yield = np .sum (self .optimized_weights * self .r )
215
- sqweights = np .matmul (
215
+ sqweights = np .dot (
216
216
np .expand_dims (self .optimized_weights , axis = 1 ),
217
217
np .expand_dims (self .optimized_weights , axis = 0 )
218
218
)
0 commit comments