search for: partb

Displaying 5 results from an estimated 5 matches for "partb".

Did you mean: part
2011 May 19
2
recursive function
...th. cdf<-function(x) { erf<-function(x) { # approximation to the error function (erf) of the # normal cumulative distribution function # from Winitzki (2008) a <- 0.147 partc <- 1+a*x^2 partb <- 4/pi+a*x^2 parta <- -x^2*(partb/partc) erf <- sqrt(1-exp(parta)) erf } # cumulative density function cdf<- 1/2*(1+erf(x/sqrt(2))) cdf } The erf(x) produces positive values wh...
2006 Oct 11
2
Help please with observe_form - not working
...:update => "table", :with => "Form.serialize(asearch)", :complete => "Element.show(''table'')", :url => { :action => "livesearch" } %> <div id="partb"> <div id="table"> <%= render :partial => "positions_list" %> </div> </div> Controller: def livesearch @categories = Category.find(:all, :order => "name") @states = State.find(:all, :order => "name")...
2014 Jul 16
2
Re: virt-resize: support to MBR logical partitions and some question
On Tue, Jul 15, 2014 at 09:01:47AM +0100, Richard W.M. Jones wrote: > The answer is I don't know. But there are a few things you can try: > > (1) Most importantly, enable tracing (export LIBGUESTFS_TRACE=1) and > get a list of operations that are performed in the order they are > performed. This is vital for debugging this. > > (2) When the error happens, run
2006 Oct 12
3
Help with observer_form , javascript error
...'roller'')", :with => "Form.serialize(''asearch'')", :complete => "Element.show(''table'')", :url => { :action => ''list'' } %> <div id="partb"> <div id="table"> <%= render :partial => ''positions_list'', :layout => false %> </div> </div> -- http://en.wikipedia.org/wiki/Dark_ambient --~--~---------~--~----~------------~-------~--~----~ You received this message because yo...
2017 Apr 17
9
[RFC] Adding CPS call support
Summary ======= There is a need for dedicated continuation-passing style (CPS) calls in LLVM to support functional languages. Herein I describe the problem and propose a solution. Feedback and/or tips are greatly appreciated, as our goal is to implement these changes so they can be merged into LLVM trunk. Problem ======= Implementations of functional languages like Haskell and ML (e.g., GHC