Displaying 20 results from an estimated 1000 matches similar to: "akima core dumps on loading (PR#521)"
2017 Mar 14
3
Having problem getting Asterisk to work on CentOS 7
Thank you Tzafrir.
I had been using different users in earlier attempts to make this work. Decided to try everything where root is the only user, simply to verify it's working.
For problem 2, where asterisk is writing to the log but doesn't seem to receive the SIP packets even though tcpdump indicates they are making it to the box on 5060, I am starting asterisk while logged in as root.
2009 Nov 20
1
AKIMA: z values at a set coordinate
Dear all.
I am using the akima function to produce 3d contour plots using interp based
on irregular data.
using the eg in the akima manual
library("akima")
data(akima)
plot(y ~ x, data = akima, main = "akima example data")
with(akima, text(x, y, formatC(z,dig=2), adj = -0.1))
## linear interpolation
akima.li <- interp(akima$x, akima$y, akima$z)
image (akima.li, add=TRUE)
2023 Jan 26
1
akima interp results to zero with less than 10 values
Dear all
I have this table
> dput(mat)
mat <- structure(c(2, 16, 9, 2, 16, 1, 1, 4, 7, 7, 44.52, 42.8, 43.54,
40.26, 40.09), dim = c(5L, 3L))
And I want to calculate result for contour or image plots as I did few years
ago.
However interp does not compute the z values and gives me zeros in z matrix.
library(akima)
> interp(mat[,1], mat[,2], mat[, 3], nx=5, ny=5)
$x
[1] 2.0 5.5
2006 Feb 01
1
akima 0.4-5, interpp() bug = COMMON block problem
Hi,
I'm currently hunting a bug in the akima library, especially in the code
behind the interpp.old function (bi-variate linear interpolation).
It is based on a triangulation algorithm, interpolation at a given point
needs to know the triangle which contains this point, then the
interpolation is a straightforward calculation based on the three
vertexes.
The problem is: Sometimes the triangle
2023 Jan 26
1
akima interp results to zero with less than 10 values
The akima package has a problematic license (it doesn't allow commercial
use), so it's been recommended that people use the interp package
instead. When I use interp::interp instead of akima::interp, I get
reasonable output from your example.
So that's another reason to drop akima...
Duncan Murdoch
On 26/01/2023 9:35 a.m., PIKAL Petr wrote:
> Dear all
>
> I have this
2000 May 04
2
acepack, akima and tripack will not load (PR#533)
Full_Name: Michael R. Allen
Version: 1.01
OS: linux redhat
Submission from: (NULL) (149.149.32.46)
Hello,
Thought you might be interested. I tried to load the package tripack
needed by the sgeostat package. After some careful searching, three packages
were
found which had the same error. Here is the output.
Mike
> library(acepack) Error in dyn.load(x, as.logical(local),
2004 Oct 28
1
akima error
I am trying to load the GRASS library and am getting the following
error:
> library(GRASS)
Loading required package: akima
Error: package 'akima' could not be loaded
In addition: Warning message:
There is no package called 'akima' in: library(pkg, character.only =
TRUE, logical = TRUE, lib.loc = lib.loc)
This is on R 2.0.0, library(GRASS) is installed, and update.packages()
2007 Apr 23
0
Re Wine and games (Correction)
I installed wine 0.9.35 on Mepis95. Mask of Eternity still crashes
immediatelly. Hewever Ages of Empires playes slow only. A well known simptom
which with my Radeon card can be solved by setting in xorg.conf for the
device
Option "XAANoOffscreenPixmaps" "true"
After which it playes perfectly. (This is also true for 0.9.319)
By the way the for The mask of
2005 Oct 03
2
interpolation using akima (PR#8174)
Full_Name: Jonathan Lees
Version: 2.0.1
OS: linux-gnu
Submission from: (NULL) (152.2.75.65)
there is a problem with calculating the convex hull in 2-D interpolation using
the codes interp fromt eh akima package:
x =c(0.6505304, -1.1821562, -0.2600792, 0.7913716)
y = c(1.0424226, 0.1754048, -1.4523334, 0.2349112)
z = c(0.000, 3.042, 0.370, 0.122)
EX = seq(from=min(x), to=max(x),
2016 Apr 27
1
AKIMA or translating to FORTRAN a R function calling a FORTRAN routine
Hi,
I am hired to translate into FORTRAN R functions. It works great and my customer is happy. I am going to translate a function that call aspline in the library AKIMA.
This function call 2 FORTRAN routines that must be include (I guess) in the package AKIMA. And I have some questions.
Is the fortran code really included in the R package AKIMA ?
In other word, do I have a mean to call these 2
2019 Nov 03
1
Sieve redirect does not collect the sendmail child process correctly (Dovecot 2.3.4.1, Pigeonhole 0.5.4)
On Saturday, November 2, 2019 10:40:45 PM EET Stephan Bosch <stephan at rename-it.nl> wrote:
> I think we already know about this issue (tracked as DOP-942). It
> apparently happens because qmail masks the SIGCHLD signal while Dovecot
> doesn't unmask it before waiting for children.
You're right.
Isn't this a simple fix - a call to sigprocmask ?
This should not be a
2007 Feb 09
2
Wine does nothing Help !!!!!
Hello everyone..
I have installed wine-0.9.30 from source ( just ran tools/wineinstall from the source directory ). It installed without any problems. But when I try to run any program using wine it does nothing, just hangs there. It does not give any error also.
I did a "strace" on the process here is some of the strace output.
"[pid 16929] rt_sigprocmask(SIG_SETMASK, [], NULL,
2008 May 29
1
akima interpolation and triangulation question
Dear all;
First of all, this is probably a more conceptual question than a
R-related one, but still want to give it a try. When working with the
interpolation function "interp" from the package akima and the
triangulation function "tri.mesh" from package tripack I've got NA's
for the interpolation and "error" for the triangulation. The data is
arranged in a
2011 Mar 18
1
akima::interp "scales of x and y are too dissimilar"
Dear R users,
I want to do a fitted.contour plot of selected columns of a dataframe M with
M$AM and M$Irradiance as x and y axes respectively. The level of the contour
shall be determined by M$PR.
Some words on my data first. Dataframe M looks like:
head(M$Irradiance)
[1] 293 350 412 419 477 509
head(M$AM)
[1] 2.407 2.161 1.964 1.805 1.673 1.563
head(M$PR)
[1] 70.102 72.600 75.097 80.167
2014 Jun 22
0
openssh connection hangs upon shell exit
I am using an openSSH server on a privately built distribution. I am can
login with an interactive session, use scp and everything is fine except
that when I exit the shell of an interactive session or when the copy
transfer terminates (scp), sshd hangs forever. The shell process is in the
zombie state, which indicates that the openssh process for the connection
has not checked the child status.
2011 Feb 10
1
problem with R (akima, fUtilities) in Ubuntu 10.04
Dear all!
I'm using R 2.12.1 in Ubuntu 10.04.
Problem is that when using functions like interp (package akima) and
akimaInterp (package fUtilities), I get different results every time for
the same data set. I've checked the interpolated results, and two
examples (in attachment) have different sum of NA values. Also when I
subtract the x,y,z values from two interpolations of the same data
2020 Oct 26
0
Re: RBD volume not made available to Xen virtual guest on openSUSE 15.2 (with libvirt 6.0.0)
On a Friday in 2020, Marcel Juffermans wrote:
>Hi there,
>
>Since upgrading to openSUSE 15.2 (which includes libvirt 6.0.0) the
>virtual guests don't get their RBD disks made available to them. On
>openSUSE 15.1 (which includes libvirt 5.1.0) that worked fine. The XML
>is as follows:
>
[...]
>I tried to strace libvirtd. The results are as follows:
>
>On
2006 Mar 24
0
Hang after upgrade to 1.1RC1 and Edge
The same application, working fine under 1.0, but after upgrade to
1.1RC1 (include edge Rails 4021) the cpu keeps spinning (took 85%) and
the rest was taken by Postgresql. Looks like Rails keep sending sql
statement to the database.
I did a strace and following messages repeat:
send(8, "Q\0\0\0\nBEGIN\0", 11, 0) = 11
rt_sigaction(SIGPIPE, {0xb7ec06bc, [], SA_RESTART}, {SIG_IGN},
2020 Oct 26
1
Re: RBD volume not made available to Xen virtual guest on openSUSE 15.2 (with libvirt 6.0.0)
It's QEMU 4.2.1-lp152.9.6.1.
I've tried updating it from the Open Build Service repos but there's too
many version conflicts.
Marcel
On 26/10/20 9:02 pm, Ján Tomko wrote:
> On a Friday in 2020, Marcel Juffermans wrote:
>> Hi there,
>>
>> Since upgrading to openSUSE 15.2 (which includes libvirt 6.0.0) the
>> virtual guests don't get their RBD disks
2006 Jun 06
1
Asterisk 1.2.7.1 bad file descriptor
Hi all,
could someone tell me what this does mean "bad file descriptor" when
trying to start asterisk. It goes till the CLI command and then die with
this message. Below an strace output from asterisk -vvvvvvvvvc
It's on debian Sarge kernel 2.6.7 with packages from debian VoIP team.
The server was running fine till now with this version.
Thanks