Displaying 9 results from an estimated 9 matches for "polynomf".
Did you mean:
polynom
2010 Oct 14
1
Fw: Problem to create a matrix polynomial
...0/10, Ron_M <ron_michael70@yahoo.com> wrote:
From: Ron_M <ron_michael70@yahoo.com>
Subject: [R] Problem to create a matrix polynomial
To: r-help@r-project.org
Date: Wednesday, 13 October, 2010, 4:31 PM
Dear all R users, I was trying to create a polymonial using the polynom() of
"PolynomF" package. My problem is, if I pass coefficients as simple
numerical values, it is working, but for matrix coefficient it is not. Here
is my try:
library(PolynomF)
z <- polynom()
## following is working
p1 <- 1- 4.5*z
## However following is not giving results as intended
p1 <- diag...
2008 Oct 15
4
a really simple question on polynomial multiplication
Dear R people:
Is there a way to perform simple polynomial multiplication; that is,
something like
(x - 3) * (x + 3) = x^2 - 9, please?
I looked in poly and polyroot and expression. There used to be a
package that had this, maybe?
thanks,
Erin
--
Erin Hodgess
Associate Professor
Department of Computer and Mathematical Sciences
University of Houston - Downtown
mailto: erinm.hodgess at
2011 May 29
1
Hello!
Hi, I'm a student studing for Math. & Infor. Ing. in Tirana,Albania and a have a final project in R to finish in a week, so I badly need your help...
The topic of the project is "Hermite Interpolation" and a I have allready done a script that finds the approximation in a certan point x, H(x) ~f(x) but i want to find the value of his derivative H'(x)~f'(x) as well and to
2009 Jan 17
2
DierckxSpline segfault
...ar.dorai-raj at pdf.com>
Description: This package provides a wrapper to the FITPACK routines
written by Paul Dierckx. The original Fortran is
available from http://www.netlib.org/dierckx
License: GPL (>= 2)
Depends: R (>= 2.4.0), stats, lattice, PolynomF
Suggests: fda, splines
Packaged: Sun Jan 11 13:08:12 2009; spencerg
Built: R 2.8.1; i486-pc-linux-gnu; 2009-01-17 10:21:01; unix
---
I'm ready to provide any additional info,
Andrey
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
2009 Jun 03
0
fitting polynomial, for integration.
...nom from the coefficients so that I can integrate it. I
first use lm to fit the polynomial setting the coefficients to raw=TRUE -
this appears to work fine. I plot the model and it is a true
representation of the data.
I then take the coefficients vector and construct a polynom from the
library(PolynomF) package. When I plot this the generated line is not
representative of the data. The polynomial intercept is correct, however
the gradient is well below the actual dataset, and does not follow the
same contour.
A code snippet and output are provided below. Any help would be much
appreciated.
T...
2011 Jun 14
1
functions for polynomial and rational interplation?
Are there implementations of, e.g. Neville's algorithm, for interpolating
polynomials through some data points? Nevilles' is an improvement on
Lagrange interpolation. And how about interpolating rational functions? I
could not find anything at rseek.org or at crantastic.org.
thanks
--
View this message in context:
2010 Jul 18
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week
New packages
------------
* allan (1.0)
Alan Lee
http://crantastic.org/packages/allan
Automates Large Linear Analysis Model Fitting
* andrews (1.0)
Jaroslav Myslivec
http://crantastic.org/packages/andrews
Andrews curves for visualization of multidimensional data
* anesrake (0.3)
Josh Pasek
http://crantastic.org/packages/anesrake
This
2010 Oct 15
0
nomianl response model
...n_michael70 at yahoo.com>
To: r-help at r-project.org
Subject: [R] Problem to create a matrix polynomial
Message-ID: <1286962314278-2993411.post at n4.nabble.com>
Content-Type: text/plain; charset=us-ascii
Dear all R users, I was trying to create a polymonial using the polynom() of
"PolynomF" package. My problem is, if I pass coefficients as simple
numerical values, it is working, but for matrix coefficient it is not. Here
is my try:
library(PolynomF)
z <- polynom()
## following is working
p1 <- 1- 4.5*z
## However following is not giving results as intended
p1 <- diag...