Displaying 20 results from an estimated 116 matches for "kal".
Did you mean:
al
2007 Feb 17
1
Solve in maximum likelihood estimation
Hi,
I got the following problem.
I am doing a maximum likelihood estimation for a Kalman Filter.
For this purpose, I have to invert an error matrix Ffast of dimension
"no. parameters X no.parameters". The usualy optim methods often find only
local minima, so I decided to make the optimization using the SANN
algorithm, which is very slow already.
However, this becomes a...
2002 Jul 01
1
Substitutions in strings.
Hi all,
Sorry to bother you with the potentially not too bright question, but
since I cannot get it to work, I'll have to ask someone..
I've got this vector:
> token
[1] sal skal skal bak b_r d_ gal kal l_r n_r pak
p_r
[13] sal sl_r sn_r spak sp_r st_r s_ bak d_ gal l_r
pak
[25] p_r sak sl_r sp_r t_ kal n_r s_ st_r sak kal
spak
[37] s_ spik t_ n_r spik spak gal pak p_r sak sl_r
spak
[49] s_ s_r...
2011 Jan 12
0
working with the net commands... trouble.
...mem 'Print Operators'
BUILTIN\Print Operators has 1 members
\jdown
My smb.conf:
[global]
log level = 5
workgroup = KRH
realm = KRH.INT
netbios aliases = freecups-2
server string = FreeCUPS-2
security = ADS
password server = kal-dc3.krh.int, kal-dc4.krh.int,
kal-dc2.krh.int, *
ntlm auth = No
client NTLMv2 auth = Yes
smb ports = 139
printcap cache time = 10
printcap name = cups
cups server = localhost
addprinter command = /usr/local/sbin/smbaddprinter.pl...
2010 Aug 24
0
Using kfilter in package sspir - dimensions do not agree
...In the filterstep function (file sspir_kfs.R), this causes an error at
line 111: e <- y - f. Vector y has dimension 4, while vector f has
dimension 2. Here's some sample code:
######################################################################
require(sspir)
# getting the hang of the kalman filter
x.coords <- c(5,6,5,6,8,9,8,8,10,11)
y.coords <- c(25,30,42,51,55,52,42,28,24,31)
times <- 1:10
x.vel <- c(0,diff(x.coords)/diff(times))
y.vel <- c(0,diff(y.coords)/diff(times))
kal.df <- data.frame(x.coords,x.vel,y.coords,y.vel)
kal.ts <- ts(kal.df,deltat=mean(diff(t...
2012 Mar 29
25
Unable to deploy to Apache
Hi All,
Can someone please help? I''ve been banging my head against for wall
for 2 months; all of which has been spent trying to set up ROR. So I
actually haven''t written 1 line of code :( Any help would be greatly
appreciated :)
I''m following the 4th edition of "Agile Web Development with Rails".
So, I''m able to deploy the site via WEBrick.
2009 Jan 16
0
No subject
---
span_1 = DAHDI/g1
1,1,dial(${span_1}/${EXTEN:0})
---
I can only presume some form of precedence overrides the group configuration
in the recent asterisk installs and not for the servers set up earlier.
On 26/5/09 4:01 PM, "Kal Feher" <kalman.feher at melbourneit.com.au> wrote:
> Ok I've solved the problem. I do not think it was as switchtype issue after
> all as it is now working with a national2 configuration.
>
> I need to sort out some of the changes and I'll post back for reference.
&...
2012 Jan 20
1
[LLVMdev] TableGen Crash
...000001088e3e63 llvm::TableGenMain(char*,
llvm::TableGenAction&) + 931
11 llvm-tblgen 0x00000001088d05c6 main + 102
12 llvm-tblgen 0x0000000108738934 start + 52
13 llvm-tblgen 0x0000000000000002 start + 18446744069272794882
Stack dump:
0. Program arguments: ./llvm-tblgen /Users/kal/Desktop/bug.td
Segmentation fault: 11
Thanks,
Kal
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: bug.td
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120120/0258ab39/attachment.ksh>
2004 Jul 07
3
KalmanSmooth problem
Hello,
In R I am trying to use Kalman filtering to find a solution for an hydrological problem. With Kalman Filtering I want to estimate the discharge comming from three storage bassins. I have programmed a function in R which can run KalmanSmooth. When I'm asking for the function and putting in values, R detects the following e...
2011 Feb 18
1
Not sure I understand when add user script is called
...l]
display charset = UTF-8
workgroup = KRH
realm = KRH.INT
netbios aliases = hitstor
server string = HIT anything server
interfaces = 172.29.107.110
bind interfaces only = Yes
security = ADS
auth methods = sam, winbind, trustdomain
password server = kal-dc3.krh.int, kal-dc4.krh.int, kal-dc2.krh.int, *
ntlm auth = No
client NTLMv2 auth = Yes
log level = 1
syslog = 0
log file = /var/log/samba/log.%U
debug prefix timestamp = Yes
smb ports = 139
name resolve order = wins host bcast lmhost
unix extensions =...
2006 Jul 31
4
question about dataframe ("sensory") in PLS package
Dear all,
I am trying to my dataframe for the PLS analysis using the PLS package.
However I have some trouble generating the correct dataframe. The main
problem is how to use one name to represent several columns in the
dataframe.
The example dataframe in PLS package is called "sensory". I cannot
directly read the data file since it's a binary file. If I use
2017 Jan 10
2
Reliable way of having both LAN and WIFI on headless box
I'd be looking at your logs to see if there is any indication why the
wifi does not come up during boot
> sudo journalctrl -b # current boot
> sudo journalctrl -b -1 # previous boot
Kal
On Wed, Jan 11, 2017 at 7:59 AM, Eliezer Croitoru <eliezer at ngtech.co.il> wrote:
> NetworkManger should work pretty nice and good as required.
> Just run the right cronjob every minute to make sure the connection is up or
> down and find out if it's possible to reconnect.
&g...
2012 Mar 22
1
[LLVMdev] Infinite recursion in sys::fs::create_directories()
..._path(p);
if (!parent.empty()) {
bool parent_exists;
if (error_code ec = exists(parent, parent_exists)) return ec;
if (!parent_exists)
if (error_code ec = create_directories(parent, existed)) return ec;
}
return create_directory(p, existed);
}
//------------------
Thanks,
Kal
2010 Oct 22
1
Complete list of possible ogginfo warning and error messages
...errors that can be output by ogginfo. Does
anybody have that list handy? Are they *all* contained in the ogginfo2.c
source code file? I see a lot of warning-related or error-related strings in
there, but I can't be sure that there are not more strings borrowed from
other source files.
Cheers,
Kal
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/vorbis/attachments/20101022/ca6d072a/attachment.htm
2009 May 19
2
Unable to make outbound calls
...2 default
43 DID_span_2 default
44 DID_span_2 default
45 DID_span_2 default
46 DID_span_2 default
47 DID_span_2 default
--
Kal
2015 May 11
2
[LLVMdev] Bug in Support/Allocator.h
Hi,
llvm::BumpPtrAllocatorImpl::Reset() looks like it has a bug.
There is this check at the top:
if (Slabs.empty())
return;
But what if you don't have any normal Slabs allocated but only
CustomSizedSlabs.
I think this should be:
if (Slabs.empty() && CustomSizedSlabs.empty())
return;
2011 Jan 14
1
SAMBA / CUPS Printserver
Okay, I've got some progress now. Have fairly decent printserver
working. I've been able to reproduce the same postive and negative
results in two physical servers and now (finaly destination) a vmware
server.
What's working:
ADS integration, this is a domain member
Printer driver installation (for a few drivers)
Printer installation / removal
Printing.
What's not working:
2013 Dec 06
2
How reliable is XFS under Gluster?
Hello,
I am in the point of picking up a FS for new brick nodes. I was used to
like and use ext4 until now but I recently red for an issue introduced by a
patch in ext4 that breaks the distributed translator. In the same time, it
looks like the recommended FS for a brick is no longer ext4 but XFS which
apparently will also be the default FS in the upcoming RedHat7. On the
other hand, XFS is being
2019 Jan 09
4
Problems trying to build LLVM
...nstalling on a Mint 18.1 VM with 6GB RAM, and the builds of some
large executables were killed by the OOM killer. I finally realized that I
needed to build using shared libraries, and succeeded. This was in November.
- I put aside my LLVM project, and just got back to it. I got stuck
compiling the Kaleidoscope demo, encountering this error:
/tmp/kal-2072b8.o:(.data._ZN4llvm30VerifyDisableABIBreakingChecksE+0x0):
undefined reference to `llvm::DisableABIBreakingChecks'
This discussion, from this mailing list, points out that I need to build
LLVM with -DLLVM_DISABLE_ABI_BREAKING_CHECKS_ENF...
2011 Apr 18
3
Logging configuration
How do I tell puppet to log somewhere other than /var/log/messages. None of
the logging configuration options seem to do anything any more. Specifically
puppetdlog.
# The log file for puppet agent. This is generally not used.
# The default value is ''$logdir/puppetd.log''.
puppetdlog = /var/lib/puppet/log/puppetd.log
--
You received this message because you are
2014 Dec 16
2
rsync output under CentOS 6
Hello Kahlil,
Monday, December 15, 2014, 11:25:35 PM, you wrote:
KH> When you use --itemize-changes, does it indicate that the timestamps of the
KH> directories have changed?
Not uless the sequence of dots and letters before the folder name indicates that
--
Best regards,
Niamh mailto:niamh at fullbore.co.uk
-------------- next part --------------
A non-text