search for: dae

Displaying 20 results from an estimated 152 matches for "dae".

Did you mean: date
2012 Jun 20
2
TINC - sometimes working a bit
...ation is: all tincs are connected, but there ist (almost) no traffic: Only two PCs are able to ping to another, but not to itself. Let me explain, what I'm planning to do: I've got four networks: PROM: 10.69.0.0/16 PAN: 192.168.30.0/24 (I'm afraid, I can't change PAN to 10.x.x.x) DAE: 10.90.0.0/16 VOY: 10.2.0.0/16 All of them shall be bridged by tinc, running on MS Windows 2k8R2. TAP Config as follows: PROM: 10.69.15.1/8 PAN: 192.168.30.9/16 DAE: 10.90.15.1/8 VOY: 10.2.0.0/8 tinc.conf --------- AdressFamily=ipv4 Mode=router Name=PAN ConnectTo=PROM ConnectTo=VOY Interface=t...
2011 Oct 03
0
deSolve - Function daspk on DAE system - Error (Vince)
Vince, When that happens, one possible reason is that your DAE is of index > 1, which cannot be solved by daspk. The solver radau, also from deSolve can handle DAEs up to index 3, but you need to rewrite the problem in the form M*y' = f(x,y), where M is a mass matrix. If you do that for your problem, and solve it with radau, then radau complains that...
2008 Feb 15
1
Conditional Autoregressive (CAR) model simulation
...conditional autoregressive (CAR) structure, for a given neighbouring matrix and for a autocorrelation "rho". Is there any package or function in R to perform it ? I found the function "CARsimu" in the hdeco library, but this is not what I'm looking for Thanks in advance Dae-Jin -- __________________________________ Dae-Jin Lee Office/Despacho: 7.3.J04 Phone/Tlfno:+34 91 624 9175 Fax: +34 91 624 9430 Departamento de Estadística Av. Universidad 30, Ed. Juan Benet 28911 Leganés (Madrid), SPAIN Universidad Carlos III de Madrid e-mail: dae-jin.lee@uc3m.es web: htt...
2011 Oct 02
0
deSolve - Function daspk on DAE system - Error
I'm getting this error on the attached code and breaking my head but can't figure it out. Any help is much appreciated. Thanks, Vince CODE: library(deSolve) Res_DAE=function(t, y, dy, pars) { with(as.list(c(y, dy, pars)), { res1 = -dS -dES-k2*ES res2 = -dP + k2*ES eq1 = Eo-E -ES eq2 = So-S -ES -P return(list(c(res1, res2, eq1, eq2))) }) } pars <- c(Eo=0.02, So=0.02, k2=250, E=0.01); pars yini <- c(S=0.01, ES = 0.01, P=0.0, E=0.01);...
2006 Apr 24
7
ImageMagick/Rmagick replacement?
...d was order of magnitude faster than pure java image libraries. Is it really a resource hog, or is it just the way it is with image processing? (I normally use ImageMagick only for resizing/cropping images, nothing too fancy.) I will appreciate any comments or suggestions, thanks! best, daesan
2007 Jul 30
1
stop criteria when "L-BFGS-B needs finite values of 'fn' " in optim
...myfun == ERROR) ..... # when the error message is "L-BFGS-B needs finite values of 'fn' ???? I've succesfully achieved when, for example convergence is not reached, if(myfun$convergence != 0) but I don't know how to do it in the other case Any help?? Thanks in advance, Dae-Jin -- __________________________________ Dae-Jin Lee Despacho: 7.3.J04 Tlfno: 91 624 9175 Fax: 91 624 9430 Departamento de Estadística Av. Universidad 30, Ed. Juan Benet 28911 Leganés (Madrid) Universidad Carlos III de Madrid e-mail: dae-jin.lee@uc3m.es web: http://www.est.uc3m.es/daejin...
2006 May 25
4
Does TMail support Nested Multipart Messages? (Repost)
Hi, does anybody know if TMail supports nested multipart messages? I read a changelog that indicates so (http://dev.rubyonrails.org/svn/rails/trunk/actionmailer/CHANGELOG), but I haven''t been able to get it working so far. Maybe I am doing something wrong here? I attached the sample mail. Here is the code to parse it: require File.dirname(__FILE__) +
2016 Apr 20
2
Dangling debug value or bug in argument elimination pass?
...it one more time, now with an example… Short of upstreaming a fake function clone pass, let me only illustrate the issue in raw debug output. Hopefully it should be sufficient. Try this: clang -Os -g -fno-strict-aliasing test_arg_del.ll -mllvm -debug -mllvm -print-after-all After DAE - Removing argument 1 (reg) from foo DAE - Removing argument 2 (field) from foo DAE - Removing argument 4 (offset) from foo We are going to have something like this: *** IR Dump After Dead Argument Elimination ***; ModuleID = 'test_arg_del.ll' … define internal fastcc void @f...
2006 May 15
6
Getting Net::IMAP to work with PLAIN auth type...
Hi there, I''m new to rails and I''ve been successful tinkering around but am miffed by the process of trying to connect to my mail server to receive email for ActiveMailer parsing. I''m hosted on TextDrive and have read the following article on the RubyonRails wiki: http://wiki.rubyonrails.com/rails/pages/HowToReceiveEmailsWithActionMailer. I want to
2016 Apr 15
3
Dangling debug value or bug in argument elimination pass?
...4 0, metabb !36, metabb !47), !dbg !59 call void @llvm.dbg.value(metabb i32 %bb, i64 0, metabb !37, metabb !47), !dbg !60 During dead argument elimination pass, some of the arguments are found “dead” (which they are) and removed, without removing their correspondent llvm.dbg.value: ... DAE - Removing argument 1 (reg) from foo DAE - Removing argument 2 (field) from foo ... … define internal fastcc void @foo(i8* %aa, i32 %bb, ...) unnamed_addr #3 !dbg !28 { entry: call void @llvm.dbg.value(metabb !2, i64 0, metabb !34, metabb !47), !dbg !57 call void @llvm.dbg.value(metab...
2010 Mar 07
3
mlogit
I am trying to follow this example for multinomial logistic regression http://www.ats.ucla.edu/stat/r/dae/mlogit.htm However, I cannot get it to work properly. This is the output I get, and I get an error when I try to use the mlogit function. Any ideas as to why this happens? > mydata <- read.csv(url("http://www.ats.ucla.edu/stat/r/dae/mlogit.csv")) > attach(mydata) > names(...
2016 May 18
1
[PATCH 0/5] drm: fixes for merge-window regressions
...vers/gpu/drm/nouveau/nouveau_gem.c | 1 - drivers/gpu/drm/nouveau/nv50_display.c | 1 - drivers/gpu/drm/radeon/radeon_cs.c | 1 - scripts/headers_check.pl | 4 ++++ 9 files changed, 9 insertions(+), 10 deletions(-) Cc: Russell King <rmk+kernel at armlinux.org.uk> Cc: Inki Dae <inki.dae at samsung.com> Cc: Joonyoung Shim <jy0922.shim at samsung.com> Cc: Seung-Woo Kim <sw0312.kim at samsung.com> Cc: Kyungmin Park <kyungmin.park at samsung.com> Cc: Kukjin Kim <kgene at kernel.org> Cc: Krzysztof Kozlowski <k.kozlowski at samsung.com> Cc:...
2007 Mar 06
1
optim(), nlminb() and starting values
...otLog and notExp functions of mgcv package) the function nlminb( ) also have the same problems. ¿Is there any thing I'm not considering? I mean other methods instead of "L-BFGS-B"? How can I do to take a strategy to begin with "good" starting values? Thanks in advance Dae-Jin PS: I'm trying to fit a mixed model with REML and several random effects, so I maximize over several parameters... [[alternative HTML version deleted]]
2013 Jan 10
1
Question about memory upper limit
My CPU is 64 bit, but my CentOS is 32 bit version. Does my system support memory larger than 4G? Dae James -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-docs/attachments/20130110/7a547187/attachment-0006.html>
2007 Jan 12
1
R2WinBugs and Compare DIC versus BIC or AIC
...of 300 and Pd of 32 versus - BIC of 220 and Effective dimension (measured of trace of hat matrix) equal to 14 * I've read that DIC is intended as a generalisation of Akaike's Information Criterion (AIC), but is it possible to compare them simply looking which is the lowest??? Thanks, Dae-Jin Lee [[alternative HTML version deleted]]
2008 Apr 12
2
Predict Function
Hi all - my first time here and am having an issue with the Predict function. I am using a tutorial as a guide, locate here: http://www.ats.ucla.edu/STAT/R/dae/mlogit.htm My code gives this error > newdata1$predicted <- predict(mlogit,newdata=newdata1,type="response") Error in `$<-.data.frame`(`*tmp*`, "predicted", value = c(0.332822934960197, : replacement has 810 rows, data has 6 How can I resolve this problem so I c...
2019 Jan 24
3
[PATCH 26/26] drm/<drivers>: Don't set FBINFO_(FLAG_)DEFAULT
It's 0. Signed-off-by: Daniel Vetter <daniel.vetter at intel.com> Cc: Inki Dae <inki.dae at samsung.com> Cc: Joonyoung Shim <jy0922.shim at samsung.com> Cc: Seung-Woo Kim <sw0312.kim at samsung.com> Cc: Kyungmin Park <kyungmin.park at samsung.com> Cc: Kukjin Kim <kgene at kernel.org> Cc: Krzysztof Kozlowski <krzk at kernel.org> Cc: Patrik J...
2009 Aug 01
7
dom0 unable to launch domU
...estart''], [''vcpus'', 1], [''on_xend_start'', ''ignore''], [''on_xend_stop'', ''ignore''], [''image'', [''linux'', [''kernel'', ''/boot/vmlinuz-2.6.29.6-dae-xen'']]], [''device'', [''vbd'', [''uname'', ''''], [''dev'', ''xvda1''], [''mode'', ''w'']]], [''device'', [''vif'', [''i...
2006 May 18
9
Possible solutions to txtdrive process killing for cpu usage
Hi, I''ve just deployed a basic ecommerce site on textdrive.com. The application has been stress tested on our local development machines and appears to be running fine (no memory leaks). However, on textdrive the fcgi processes are being killed after just a few requests apparently because of cpu usage (The log says the processes exceeds 17% average cpu usage in the last few minutes)
2006 Feb 18
14
Composite primary key support in ActiveRecord?
...this by using ''TopicReply.find (:fist, conditions => ["topic_id=? AND id=?", 87, 3]'' instead of ''TopicReply.find(1074)''. However, I haven''t figured out yet how to save such objects.. Any comment will be greatly appreciated. Thanks, daesan