Displaying 20 results from an estimated 300 matches similar to: "Piecewise cubic Hermite interpolation"
2012 Dec 01
3
cubic spline
Hallo,
I'm facing a problem and I would really appreciate your support.
I have to translate some Matalb code in R that I don't know very well but I
would like to.
I have to interpolate 5 point with a cubic spline function and then I expect
my function returns the Y value as output a specific X value inside the
evaluation range. Let's suppose that:
1- *X = [-10, -5, 0, 5, 10]*
2
2002 Feb 07
1
rsync error: partial transfer (code 23) at main.c(576)
I want to rsync my home directory from interd1 to interp1. interd1 is
the server, so I enter:
rsync -vraz --delete ./ interp1::test
rsync: building file list ...
rsync: 6 files to consider.
delete_one: unlinek .rhosts: Permission denied
./
.profile
rsync: failed to open ".sh_history", continuing : Permission denied
.sh_history
a.a
rsync.tst
test
mkstemp ..profile.KIa00D failed
mkstemp
2016 Aug 04
2
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
On Tue, 12 Jul 2016, Daniel Vetter <daniel at ffwll.ch> wrote:
> On Thu, Jun 30, 2016 at 12:30:56PM +0100, Chris Wilson wrote:
>> Backlights controlled by i915.ko and only associated with its connectors
>> and also only associated with the intel_drmfb fbcon, controlled by
>> i915.ko. In this situation, we already handle adjusting the backlight
>> when the fbcon is
2016 Jun 30
6
[PATCH] backlight: Avoid double fbcon backlight handling
Backlights controlled by i915.ko and only associated with its connectors
and also only associated with the intel_drmfb fbcon, controlled by
i915.ko. In this situation, we already handle adjusting the backlight
when the fbcon is blanked/unblanked and do not require backlight trying
to do the same.
Attempting to register with the fbdev as a client causes lockdep to warn
about a dependency cycle:
[
2009 Mar 12
3
can I draw 3D plot like this using R?
hi, all
I am looking at R package RGL to draw a colored mesh/surface plot like
this one (from matlab).
http://www.mathworks.com/access/helpdesk/help/techdoc/visualize/cbar.gif
The key features I am looking for is surfaced with grid and color, but
not the terrain-like gradient. but I didn't come even close to it
after browsing through rgl help file.
have anyone drawn something like this
2012 Aug 28
5
return first index for each unique value in a vector
I would like to efficiently find the first index of each unique value in a
very large vector.
For example, if I have a vector
A<-c(9,2,9,5)
I would like to return not only the unique values (2,5,9) but also their
first indices (2,4,1).
I tried using a for loop with which(A==unique(A)[i])[1] to find the first
index of each unique value but it is very slow.
What I am trying to do is easily
2004 Aug 09
1
returns the value of a polynomial of degree n evaluated at x.
> Background:
> OS: Linux Mandrake 9.1
> release: R 1.9.0
> editor: Xemacs 21.4
> frontend: ESS 5.1.23
> ---------------------------------
>
> Colleagues
>
Is there a function in R that is similar to polyval in matlab? (y =
polyval(p,x) returns the value of a polynomial of degree n evaluated at x.
The input argument p is a vector of length n+1 whose elements are the
2011 Mar 30
2
calculating the mode in R...
Dear R users
I?m aware that the package ?modest? is useful to find the mode in an array.
However, I?d like to know if someone has translated the ?mode? function built-in
in MATLAB into R language. This function finds the most frequent value in an
array (http://www.mathworks.com/help/techdoc/ref/mode.html).
Best
Fer
2016 Jul 12
0
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
On Thu, Jun 30, 2016 at 12:30:56PM +0100, Chris Wilson wrote:
> Backlights controlled by i915.ko and only associated with its connectors
> and also only associated with the intel_drmfb fbcon, controlled by
> i915.ko. In this situation, we already handle adjusting the backlight
> when the fbcon is blanked/unblanked and do not require backlight trying
> to do the same.
>
>
2016 Aug 04
1
[Intel-gfx] [PATCH] backlight: Avoid double fbcon backlight handling
On Thu, Aug 04, 2016 at 12:02:23PM +0300, Jani Nikula wrote:
> On Tue, 12 Jul 2016, Daniel Vetter <daniel at ffwll.ch> wrote:
> > On Thu, Jun 30, 2016 at 12:30:56PM +0100, Chris Wilson wrote:
> >> Backlights controlled by i915.ko and only associated with its connectors
> >> and also only associated with the intel_drmfb fbcon, controlled by
> >> i915.ko. In
2004 Sep 14
1
Re: got pointer wrong in shared klibc binary
On Wed, Sep 15, 2004 at 10:48:02AM +0930, Alan Modra wrote:
> After using SHAREDFLAGS = -Ttext 0x0f000200 on ppc64 (which I see you
> suggested in another email), I see the problem you're talking about.
>
> klibc is fundamentally broken on ppc64. You just can't call into
> another chunk of code (klibc.so in this case) which has a separate toc
> and expect things to
2006 Jun 26
0
[klibc 32/43] ppc64 support for klibc
The parts of klibc specific to the ppc64 architecture.
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
commit 6db62c809bf46ac8a9f743513384d29fd339f877
tree e4850136d00d6b9fc1d5fb7eae9a329ac79947e1
parent a82c9b6e9b3428bae592241d1ac276054bc46fc5
author H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:40 -0700
committer H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun
2004 Apr 19
0
R analog of Matlab "eigs" function
Hi,
I was wondering if anyone knew of an implementation of a function similar to
"eigs" in Matlab (full description here:
http://www.mathworks.com/access/helpdesk/help/techdoc/ref/eigs.html).
This function differs from the standard "eigen" in that it computes a *few*
eigenvectors for cases in which your matrix is very large and/or you don't
need all the eigenvectors.
2004 Aug 09
0
returns the value of a polynomial of degree n evaluated a t x.
Try something like:
install.packages("polynom")
library(polynom)
predict(polynomial(rev(p)), x)
HTH,
Andy
> From: McClatchie, Sam (PIRSA-SARDI)
>
> > Background:
> > OS: Linux Mandrake 9.1
> > release: R 1.9.0
> > editor: Xemacs 21.4
> > frontend: ESS 5.1.23
> > ---------------------------------
> >
> > Colleagues
> >
2006 Mar 13
1
Serial PnP for NUT?
Are there any plans for using serial PnP in NUT?
I tried to implement this on the 'safenet' driver, but the support for
this doesn't seem to be widespread among the UPSes compatible with this
driver. So far, I have only managed to get one (a Sweex 1000) to output
it, but unfortunately, it is probably too generic to be really useful
for autodetection:
PnP revision : 1.00
PnP EISA ID
2003 Aug 11
2
cvs commit: src/sys/dev/twe twe.c twe_compat.h twe_freebsd.c twe_tables.h tweio.h twereg.h twevar.h
Hi,
Thank you for your work on this card! I have quite a few boxes
that run various 3wares cards with diverse firmware revs. Are there any
caveats with respect to models and firmware versions in terms of how they
might interact ?
---Mike
At 01:25 PM 10/08/2003 -0700, Paul Saab wrote:
>ps 2003/08/10 13:25:46 PDT
>
> FreeBSD src repository
>
>
2005 Aug 28
1
Arcoread7 secutiry vulnerability
Hi!
cc'd to freebsd-security@ as somebody there may correct me,
cc'd to secteam@ as maintaner of security/portaudit.
On Sun, 28 Aug 2005 10:14:21 +0930 Ian Moore wrote:
> I've just updated my acroread port to 7.0.1 & was surprised when portaudit
> still listed it as a vulnerability.
I think it is portaudit problem.
> According to
2002 Jan 03
6
Graphical representation of a matrix ?
Hi,
The function Repmat under S allows to represent a matrix of data.
Is there an equivalent function under R ?
thanks for your reply
Bruno
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not
2006 Dec 11
1
hermite and Bezier splines
Does anyone know how to do hermite or
Bezier splines in R? I can find Matlab routines, but really need to
implement them in R. Failing that I'd be interested in other
conformal splines. I need to smooth and interpolate animal tracking data.
Antarctic Wildlife Research Unit
School of Zoology
University of Tasmania
PO Box 252-05
Hobart
TAS, 7001
Australia
Phone: (0)3 6226 2645
Fax:
2004 May 28
3
gauss.hermite?
The search at www.r-project.org mentioned a function
"gauss.hermite{rmutil}". However, 'install.packages("rmutil")'
produced, 'No package "rmutil" on CRAN.' How can I find the current
status of "gauss.hermite" and "rmutil"?
Thanks,
Spencer Graves