Quantcast
Channel: Active questions tagged r - Stack Overflow
Viewing all articles
Browse latest Browse all 206503

R minimize portfolio function with gradient

$
0
0

I want to minimize function

f <- function(u){
  return(-(1+u[1]+u[2]+u[3]+u[4]))
}

with gradient grad

And I have constraints:

1) u[1]+u[2]+u[3]+u[4] = 1

2) 0<=u[1]<=1, 0<=u[2]<=1, 0<=u[3]<=1, 0<=u[4]<=1

How to make it correctly? I can make it only for 2 constraint

optim(par=c(0,0,0,0), fn=f,lower=c(0, 0, 0, 0), upper=c(1, 1, 1, 1),method="L-BFGS-B")

But 1 constraint is not true in this case


Viewing all articles
Browse latest Browse all 206503

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>