Displaying 20 results from an estimated 400 matches similar to: "functions for polynomial and rational interplation?"
2007 Dec 06
1
Solve.QP
Hi there,
I have a major problem (major for me that is) with solve.QP and I'm new at this. You see, to solve my quadratic program I need to have the lagrange multipliers after each iteration. Solve.QP gives me the solution, the unconstrained solution aswell as the optimal value. Does anybody have an idea for how I could extract the multipliers?
Thanx,
Serge
"Beatus qui prodest quibus
2009 Jan 11
4
How to get solution of following polynomial?
Hi, I want find all roots for the following polynomial :
a <- c(-0.07, 0.17); b <- c(1, -4); cc <- matrix(c(0.24, 0.00, -0.08,
-0.31), 2); d <- matrix(c(0, 0, -0.13, -0.37), 2); e <- matrix(c(0.2, 0,
-0.06, -0.34), 2)
A1 <- diag(2) + a %*% t(b) + cc; A2 <- -cc + d; A3 <- -d + e; A4 <- -e
fn <- function(z)
{
y <- diag(2) - A1*z - A2*z^2 - A3*z^3 - A4*z^4
2008 Feb 15
2
Quadratic Programming
Hi,
I am using solve.QP (from quadprog) to solve a standard quadratic
programming problem: min_w -0.5*w'Qw st ... I would like solve.QP to do two
things: 1) to start the optimization from a user-supplied initial
condition; i.e., from a vector w_0 that satisfies the constraints, and 2) to
return the values of the lagrange multiplieres associated with the
constraints. I did not find an obvious
2001 Nov 14
5
Temp files created on read-only share
Hello, All.
We have Samba 2.0.7 running on Red Hat 6.2 (up for 351 days!) and have discovered the following
anomaly:
There is a share called "appsg" that contains a number of folders, including one called
OfficeTemplates. The share definition in smb.conf is:
[appsg]
comment = Apps in Applications
path=/home/applications/apps
public = No
read only =
2006 Dec 08
1
fmincon equivalent in R
Dear all R users,
I am wondering if there are any function for Constraint optimization in R.
Especially i am looking for a R - equivalent of "fmincon" function in
MATLAB.
Thanks and regards,
Arun
[[alternative HTML version deleted]]
2009 Mar 17
3
Non-Linear Optimization - Query
Dear All,
I couple of weeks ago, I’ve asked for a package recommendation for nonlinear
optimization. In my problem I have a fairly complicated non-linear objective
function subject to one non-linear equality constrain.
I’ve been suggested to use the *Rdonlp2* package, but I did not get any
results after running the program for 5 hrs. Is it normal to run this type
of programs for hours? Also,
2008 Feb 01
6
Dynamic Change Parameters..
I am going to improve theora codec with dynamically changing way. In this
case we want to change compression parameters like video_q, sharpness when a
keyframe is generated. When i set video quality parameter using cpi->
pb.info.quality in CommpressKeyFrame in encoder_toplevel it will not change
dynamically. Can you please help me to do this. Wich function should i cange
to achieve my
2011 Feb 05
3
spline interpolation
Hello R-help
I have the following data for a standard curve
concentration(nM),fluorescence
0,48.34
2,58.69
5,70.83
10,94.73
20,190.8
50,436.0
100, 957.9
(1)Is there function in R to plot a spline.
(2)How can I interpolation,say 1000 point from 0nM-100nM and store this as a
data frame of concentration,fluorescence
(3)How can I modify the code below so that instead of retrieving a concentration
2011 May 22
2
Finding solution set of system of linear equations.
I have a simple system of linear equations to solve for X, aX=b:
> a
[,1] [,2] [,3] [,4]
[1,] 1 2 1 1
[2,] 3 0 0 4
[3,] 1 -4 -2 -2
[4,] 0 0 0 0
> b
[,1]
[1,] 0
[2,] 2
[3,] 2
[4,] 0
(This is ex Ch1, 2.2 of Artin, Algebra).
So, 3 eqs in 4 unknowns. One can easily use row-reductions to find a
homogeneous solution(b=0) of:
X_1
2001 Jan 22
1
Optimization with linear constraints
Hello
I''d like to know if there''s a way to minimize a non linear function in R
subject to some linear restrictions Ax=b
I have tried to use optim() but it doesn''t seem to be able to do it.
Or, by Lagrange multipliers, solve some non linear equations simultaneously.
Anyone can help?
Thanks
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
2008 Feb 02
1
ARCH LM test for univariant time series
Hi,
Does anyone know if R has a Lagrange multiplier (LM) test for ARCH
effects for univariant time series?
Thanks!
--
Tom
[[alternative HTML version deleted]]
2002 Dec 09
1
heteroscedasticity analysis
Hello,
First, sorry for my poor english, I will try to be understood.
It's the first time I try this "r-help mailing list" and I hope it will be
a success.
I am working on heteroscedasticity analysis. I would like to get the
"Box-Ljung" and the "Lagrange multipliers" test.
I found the first one in the library "ts", but I can't find the second one.
2006 Jul 14
1
Optim()
Dear all,
I have two functions (f1, f2) and 4 unknown parameters (p1, p2, p3, p4). Both
f1 and f2 are functions of p1, p2, and p3, denoted by f1(p1, p2, p3) and
f2(p1,p2,p3) respectively.
The goal is to maximize f1(p1, p2, p3) subject to two constraints:
(1) c = k1*p4/(k1*p4+(1-k1)*f1(p1,p2,p3)), where c and k1 are some known
constants
(2) p4 = f2(p1, p2, p3)
In addition, each parameter
2002 Feb 15
1
Win2k and Win9x printer drivers from 2.0.7?
Hello, All.
Is it possible to have a Samba 2.0.7 server provide printer drivers for both
Windows 98 and 2000 clients? I'm currently delivering Win98 drivers with
great success, but we're beginning to have Windows 2000 clients on the
network and I've been unable to trick Samba 2.0.7 into providing the proper
files. Note that the Samba server provides just file and print services;
2008 Oct 20
2
R Newbie Question
Hello list,
I just started R today and tried something quite simple. I wanted to
create a colored plot and eventually after hours of fiddling around got
it working. However, my solution seems very suboptimal and I'd really
appreciate your hints on how to improve. I believe that R already offers
many functions I coded (e.g. distance between two vectors, vector
length, vector normalization and
2005 Feb 27
2
Help with constrained optimization
Dear all,
I need an advice in the following problem.
I have to maximize two functions of the form f1(x)=f(y1,x,alpha1,beta1) and f2(x)=(y2,x,alpha2,beta2), the maximization is with respect to alpha1, alpha2, beta1, beta2. I can maximize each function separately using nlm.
The problem is that I have to add the constraint of the form g(alpha1)=g(alpha2).
The total number of parameters is
2009 Jul 03
2
Error using the Rdonlp2 Package
Dear experts,
I'm attempting to solve a constrained optimization problem using the Rdonlp2
package.
I created a Lagrange function (L=f(x)-lambda(g(x)-c)), where x is a vector
of 16 parameters. This is what I'm using as objective function in the code
below. In addition, I set bounds on these parameters (par.u and par.l). When
I run the code, I get the error message shown below. Any idea
2004 Aug 09
4
linear constraint optim with bounds/reparametrization
Hello All,
I would like to optimize a (log-)likelihood function subject to a number of
linear constraints between parameters. These constraints are equality
constraints of the form A%*%theta=c, ie (1,1) %*% 0.8,0.2)^t = 1 meaning
that these parameters should sum to one. Moreover, there are bounds on the
individual parameters, in most cases that I am considering parameters are
bound between zero
2003 Oct 31
1
help with constrOptim function
Hello. I had previously posted a question concerning the optimization
of a nonlinear function conditional on equality constraints. I was
pointed towards the contrOptim function. However, I do not understand
the syntax of this function with respect to specifying the constraints
and so I don’t know if it is what I need. The command is:
constrOptim(theta, f, grad,ui,ci,…). “theta” is the
2010 Sep 17
1
Nonlinear programming problem
Hello useRs,
I'm using the command "solnp" in package "Rsolnp" to solve a general nonlinear programming problem. But I got an error that " the leading minor of order 15 is not positive definite
". Can anybody tell what may cause this error? Does it have something to do with the starting values?
Thanks a lot!!!
Xiaoxi
[[alternative HTML version