search for: soliar

Displaying 3 results from an estimated 3 matches for "soliar".

Did you mean: solar
2005 Jul 13
3
How to increase memory for R on Soliars 10 with 16GB and 64bit R
Dear all, My machine is SUN Java Workstation 2100 with 2 AMD Opteron CPUs and 16GB RAM. R is compiled as 64bit by using SUN compilers. I trying to fit quantile smoothing on my data and I got an message as below. > fit1<-rqss(z1~qss(cbind(x,y),lambda=la1),tau=t1) Error in as.matrix.csr(diag(n)) : cannot allocate memory block of size 2496135168 The lengths of vector x and y are
2020 May 01
3
[PATCH] Use POSIX standardized options for head(1) and tail(1)
...oth head and tail and the following idiom in sed should be common going back to at least 1984 when I used sed in this way on the following systems: Berkeley Software Distribution (4.4 BSD-Lite). Mt Xinu 4.3 AIX 3 (1989) - AIX 4 (1994) HP/UX System V (1989) SunOS 3.0Beta1 (1986) thru Soliars 11 FreeBSD 2.2.6 thru FreeBSD/11 OpenBSD 2.7 Cray X/MP I recommend the change from (head -2 .depend; tail +3 .depend | sort) >.depend.tmp to (sed 2q .depend; sed 1,2d .depend | sort) > .depend.tmp should do the job correctly for all instances of sed I have ever used....
2020 Apr 26
6
[PATCH] Use POSIX standardized options for head(1) and tail(1)
--- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 304d96cd..47e04c02 100644 --- a/Makefile.in +++ b/Makefile.in @@ -353,7 +353,7 @@ depend-rebuild: rm -f config.h touch config.h makedepend -w1000 -Y. -f .depend *.c 2>/dev/null - (head -2 .depend; tail +3 .depend | sort) >.depend.tmp + (head -n 2 .depend; tail -n +3