Nothing
      Lagrange = function(A,C,b,d){
  stopifnot(is.numeric(A) & is.numeric(C) & is.numeric(b) & is.numeric(d))
  x_norm = solve(t(A)%*%A) %*% t(A)%*%b
  x_norm + solve(t(A)%*%A) %*% t(C) %*%
  solve( C %*% solve(t(A)%*%A) %*% t(C) ) %*% (d-C %*% x_norm)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.