fsobral / BOBYQA.jl

Implementation of Powell's BOBYQA in pure Julia
MIT License
1 stars 0 forks source link

Implement initial calculations for the problem #2

Open fsobral opened 3 years ago

fsobral commented 3 years ago

Use the special points used by BOBYQA to create matrices BMAT and ZMAT.

fsobral commented 3 years ago

This function is used twice:

. At the beginning of the algorithm . When RESCUE is called

Maybe this function should be dependent of alpha and beta, since the remaining calculations are the same.

It is also important to return a matrix with the new points.