similar to: Simulation)

Displaying 20 results from an estimated 1000 matches similar to: "Simulation)"

2004 Jun 14
4
[LLVMdev] Memory Alignment, Heap allocation.
Hi, 1. A small question: How do I ensure memory alignment? I want all malloced memory, globals and functions to be 4-byte aligned. Does llvm have any ".align" keyword? I'm currently implementing a small scheme toy-compiler, and want to use the lowest 2 bits for type tags. It's Currently 380 lines of scheme-code[1], quite similar to the compiler in SICP[2], which I hope to get
1999 Mar 02
1
the R interpreter
Hello, What can I read to learn more about interpreters in general and the R interpreter in particular? As for my level of computer competence, I can maintain my Linux system pretty easily and I can program a bit in C and Python. TIA, Robert Burrows rbb at nebiometrics.com -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2004 Jun 14
0
[LLVMdev] Memory Alignment, Heap allocation.
Tobias Nurmiranta wrote: > Hi, Chris and others can give you better ideas on the ideal ways to implement what you want, but I'll give some ideas/answers for now. > > 1. > > A small question: How do I ensure memory alignment? I want all malloced > memory, globals and functions to be 4-byte aligned. Does llvm have any > ".align" keyword? No, LLVM does not
2006 May 23
6
OT: best books
Hopefully this isn''t completely inappropriate, but lately I''ve been curious about what books people have found most helpful in their development as programmers. If one of the icons like Dave Thomas, DHH, Mike Clark, Andy Hunt et al could weigh in that''d be awesome :) Here are some of my favorites: Refactoring, Martin Fowler Mastering Regular Expressions, Friedl
2009 May 28
2
Running two versions of wine?
Is it possible to run two versions of wine on the same machine? As the latest development version (1.1.22) runs Sam & Max Season One and Myst Masterpiece Edition perfectly but doesn't run realMYST. But the stable version of wine that comes with Ubuntu 9.04 (1.0.1) can run realMYST and Myst Masterpiece Edition perfectly but won't run Sam & Max Season One. I was hoping there was a
1999 Dec 03
2
R as Unix-Filter and Streams for DataMining
Hi, i want to use R as a filter in a Unix-like way. So i want to start it with producerTool | R --no-save --no-restore --slave < Rscript | anotherConsumerUnixTool inside the Script i put the results to stdout, works fine, but how to read in from stdin? Its obvious that i have to source the Rscript in a different way. Any Hints? My second question is, if there is a possibility to use
2004 Feb 03
3
Implementating streams in R
Dear all, I have an implementation of streams in R. The current implementation of delay() and force() is inspired from the LISP implementation found in Part VI "Languages for AI problem solving" of "Artificial Intelligence" by G. Luger. I have tested it with the Fibonacci example in the same book (see examples below). It works but I do run into a problem when I try to
2004 Jul 17
2
[LLVMdev] Scheme compiler.
Hi, thanks for your mail! On Sat, 17 Jul 2004, Chris Lattner wrote: > > That is wonderful! Wow, you did this just ~1 month? :) Yes :), even less, but that is since I used the structure from SICP, see the URL below. > Cool, ok. Have you seen the LLVM GC support that is already available: > http://llvm.cs.uiuc.edu/docs/GarbageCollection.html > > It should be able to support
2005 Sep 19
2
ztdummy configuration help
Upon setting up and configuring the my extension.conf, meetme.conf and following the instruction outlined at this web page: http://www.voip-info.org/wiki-Asterisk+timer+ztdummy I get the following errors when calling the meetme number. Executing Wait("SIP/216.53.118.2-f41196e0", "1") in new stack -- Executing MeetMe("SIP/216.53.118.2-f41196e0",
2001 Jun 13
5
Low bitrate: when?
Hi all, Please could you tell me when is planned a version of Ogg Vorbis with low bitrate encoding? I'm waiting for this feature because I want to put my music on the web. But the song is very long, about 30 mn (yes, this is progressive music). So I fear nobody will listen to it except if the bitrate is cut down. Thanks! PS: If you really want, you can listen to the masterpiece at
2007 Dec 16
1
crash running Myst
I'm trying to run Myst (masterpiece edition). By upgrading Wine to .51, I've gotten the install to finish without complaint. When I attempt to run Myst, the following is written to the terminal: $ wine Myst.exe fixme:mixer:ALSA_MixerInit No master control found on MPU-401 UART, disabling mixer wine: Unhandled page fault on write access to 0x00150000 at address 0xb7d75cbc (thread 0009),
2009 Jan 02
1
[Fwd: Re: [R] Randomly remove condition-selected rows from a matrix]
Following Duncan's suggestion, I forward the below to R-devel. vQ -------- Original Message -------- Subject: Re: [R] Randomly remove condition-selected rows from a matrix Date: Fri, 02 Jan 2009 10:34:52 -0500 From: Duncan Murdoch <murdoch at stats.uwo.ca> To: Wacek Kusnierczyk <Waclaw.Marcin.Kusnierczyk at idi.ntnu.no> CC: R help <R-help at stat.math.ethz.ch>
2009 Mar 14
1
multiple hypothesis testing
Dear all, Myself Vijaykumar Muley working as senior research fellow. By training I am a computational biologist with not a strong knowledge of statistics. I have done some analysis which is explained as follows, I have 10340 (X) profiles of binary vectors with same length(N=845), I will call then "gene profiles" for example... v1 v2 v3 v4.....vN a 1 0 1 0 1 b 0
2009 Apr 25
0
incorrect output and segfaults from sprintf with %*d (PR#13675)
On Fri, Apr 24, 2009 at 14:40, Wacek Kusnierczyk <Waclaw.Marcin.Kusnierczyk at idi.ntnu.no> wrote: > maechler at stat.math.ethz.ch wrote: >> >> =A0 =A0 vQ> sprintf has a documented limit on strings included in the ou= tput using the >> =A0 =A0 vQ> format '%s'. =A0It appears that there is a limit on the leng= th of strings included >> =A0 =A0 vQ>
2003 Nov 01
13
Quick Question
Apologies if there is a cleanly written and searchable FAQ that I could be directed to. I have no problem to RTFM if I can find the FM... Does Asterisk currently operate under RH9? I have IBM Netfinity 4000R servers that do not support X windows under RH8.x and I prefer not to go back to RH7.3... BTW, where would I find a useful FM? David -- David J. Sussman, MBA email:
2004 Jul 17
0
[LLVMdev] Scheme compiler.
On Sun, 18 Jul 2004, Tobias Nurmiranta wrote: > > Cool, ok. Have you seen the LLVM GC support that is already available: > > http://llvm.cs.uiuc.edu/docs/GarbageCollection.html > > > > It should be able to support scheme well, though there may be some missing > > bits. > > Yes, I will read/use it closer and try to use it, and say if I miss > something.
2004 Jul 17
3
[LLVMdev] Scheme compiler.
On Sat, 17 Jul 2004, Chris Lattner wrote: > > http://www.ida.liu.se/~tobnu/scheme2llvm/ > > Looks great! > > > (what's a blurb? :) > > Just a summary, so that I can add an entry to this page: > http://llvm.cs.uiuc.edu/ProjectsWithLLVM/ Maybe this for now: "This is a small self applicable scheme compiler for LLVM. The code is quite similar to the code in
2006 Feb 26
5
Subversion | CVS | Sourceforge | OS X : Tutorials
Can anyone suggest some step-by-step tutorials for using CVS or Subversion on Sourceforge with OS X ? I''m a new to RoR and creating a Sourceforge project was recommended as a way of working and learning from/with others. But I can''t get over the hurdle of transferring what I''ve already build to csv.sourceforge or subversion.sourceforge. All my attempts generate
2009 Nov 08
1
Windows 7 editor - I can't make RWinEdt work
Good morning I just got a new computer with Windows 7. R works fine, but the editor I am used to using "RWinEdt" does not. I did find one blog post on how to get RWinEdt to work in Windows 7, but I could not get those instructions to work either. Is there a patch for RWinEdt? If not, is there another good R editor that works under Windows 7? I tried RSiteSearch with various
2009 Nov 04
1
Variable selection in NLME or LME4
Good morning I am learning about NLME and LME4, using Pinheiro and Bates and other materials from Douglas Bates, but I have not seen anything on how to do variable selection sensibly in this type of model. In OLS regression, I frequently use the lasso, but googling did not reveal a method for lasso with mixed models. Most of the material I've seen on these packages is about models with very