2

私はRを初めて使用し、Rを使用してQP問題を解決しようとしています.次のエラーが発生し続けます:

Amat and dvec are incompatible.

ここに私のコード:

d <- 4

Fr <- as.vector(Fr) ;
Aeq <- matrix(data=1, nrow=1, ncol=d) %*% U
Amat <- rbind(Aeq,U);
bv <- vector( mode= "integer", length = nrow(Amat))
bv[1] <- 1
neq <- 1

output_qp <- solve.QP(S, Fr, Amat, bv, neq, factorized=FALSE)
4

1 に答える 1

3

?solve.QP doc の言及

   problems of the form min(-d^T b + 1/2 b^T D b) with the constraints A^T b >= b_0.

したがって、少なくともこれを変更する必要がありますAmatt(Amat)

 output_qp <- solve.QP(S, Fr, t(Amat), bv, neq, factorized=FALSE)
于 2013-07-02T21:49:19.187 に答える