Displaying 6 results from an estimated 6 matches for "interp1".
Did you mean:
interp
2007 May 08
1
Piecewise cubic Hermite interpolation
Which function implements the piecewise cubic Hermite interpolation?
I am looking for equivalent of matlab's interp1 with the method = 'pchip'
Here is the reference
http://www.mathworks.com/access/helpdesk/help/techdoc/index.html?/access/helpdesk/help/techdoc/ref/interp1.html&
--
View this message in context: http://www.nabble.com/Piecewise-cubic-Hermite-interpolation-tf3708765.html#a10373214
Sent...
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
t...
2012 Dec 01
3
cubic spline
...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 - *Y = [12, 10, 8, 7, 6]*
3 - *I have to interpolate with a cubic spline assuming x=11*
In Matlab I used this function:
*y = interp1(X, Y, x, "cubic"); *
How can I do the same in R?
Many thanks in advance for your reply and support!
Kindly
Steve
--
View this message in context: http://r.789695.n4.nabble.com/cubic-spline-tp4651537.html
Sent from the R help mailing list archive at Nabble.com.
2004 Sep 14
1
Re: got pointer wrong in shared klibc binary
...kefile.inc klibc/klibc/arch/ppc64/Makefile.inc
--- klibc-0.173/klibc/arch/ppc64/Makefile.inc 2004-06-07 16:25:06.000000000 +0930
+++ klibc/klibc/arch/ppc64/Makefile.inc 2004-09-15 12:10:35.090216287 +0930
@@ -13,4 +13,13 @@ ARCHOBJS = \
ARCHSOOBJS = $(patsubst %.o,%.lo,$(ARCHOBJS))
+INTERP_O = interp1.o
+
+interp.o: interp1.o klibc.got
+ $(LD) $(LDFLAGS) -r -o $@ interp1.o klibc.got
+
+klibc.got: $(SOHASH)
+ $(OBJCOPY) -j.got $< $@
+
archclean:
+ rm -f klibc.got
diff -urpN klibc-0.173/klibc/arch/ppc64/setjmp.S klibc/klibc/arch/ppc64/setjmp.S
--- klibc-0.173/klibc/arch/ppc64/setjmp.S 2003-12-...
2006 Jun 26
0
[klibc 32/43] ppc64 support for klibc
...ial rules for this architecture. Note that this is actually
+# included from the main Makefile, and that pathnames should be
+# accordingly.
+#
+
+KLIBCARCHOBJS = \
+ arch/$(KLIBCARCH)/setjmp.o \
+ arch/$(KLIBCARCH)/syscall.o
+
+KLIBCARCHSOOBJS = $(patsubst %.o,%.lo,$(KLIBCARCHOBJS))
+
+INTERP_O = interp1.o
+
+interp.o: interp1.o klibc.got
+ $(LD) $(KLIBCLDFLAGS) -r -o $@ interp1.o klibc.got
+
+klibc.got: $(SOHASH)
+ $(OBJCOPY) -j .got $< $@
+
+archclean:
+ rm -f klibc.got
diff --git a/usr/klibc/arch/ppc64/crt0.S b/usr/klibc/arch/ppc64/crt0.S
new file mode 100644
index 0000000..a7776a1
--- /dev/n...
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In
particular, the patchset has been reorganized so as not to break
git-bisect.
Additionally, this updates the patch base to 2.6.17-git12
(d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main
difference on the klibc side is removal of obsolete code.
This is also available as a git tree at: