search for: param3

Displaying 20 results from an estimated 25 matches for "param3".

Did you mean: param
2008 Apr 15
0
routing problem: map.testroute ":param1/:param2-:param3-:param4.html"
hi, I''m trying to create meaningful urls with routing extracting all params as specified: map.testroute ":param1/:param2-for-:param3.html" However this approach totally fails - it says Routing Error, No route matches "/aaaa/bbbb-for-ccc.html" with {:method=>:get} Then while browsing source code and some googling I''ve found that there is sth called ActionController::Routing::SEPARATORS so I''...
2008 May 28
1
Search&replace string?
...possible to modify a text file with a R function. In fact I would like to know if a function "Search & Replace" exists. My problem is to create config files from a Base file in which I have to modify values of parameters. My Base File: #... #... Param1= V1_1 #... Param2 = V2_1 Param3 = V3_1 #... What I would like for each created file i: #... #... Param1= V1_i #... Param2 = V2_i Param3 = V3_i #... For the moment my solution is to read each line of the config file, modify if needed the line and recopy it in the new file. But the problem is that my file is about 500 lines...
2012 Dec 13
1
PLEASE REMOVE FROM LIST SERVE NOW!
PLEASE REMOVE ME FROM THIS LIST SERVE IMMEDIATELY!!!!!! On Wed, Dec 12, 2012 at 6:41 PM, dada <paxkn@nottingham.ac.uk> wrote: > Hi > I would like to do neural netowrk analysis on my data. It look like this: > > drug param1 param2 param3 param4 param5 class > A 111 15 125 40 0.5 1 > B 347 13 280 55 3 2 > C 335 9 119 89 -40 1 > D 477 37 75 2 0 1 > E 863 24 180 10 5 2 &...
2008 Feb 08
0
javascript parameter problem with onsubmit
Hi I have this problem: <script> var param1 = ''field3''; </script> <script> var param2 = ''field3''; </script> <script> var param3 = ''field3''; </script> <%= submit_tag ''Next'', {:onsubmit => ''return validate_options(param1,param2,param3);''} %> function validate_options(params) { alert (params); return false; } This does not seem to p...
2010 Mar 19
2
Using DTrace in 32-bit to handle 64-bit parameters [72631230]
...9;m looking at these abstraction layers as hiding what has to go on underneath anyway, and would just get on with it. The customer is coming around to that way of thinking: > Small example: > provider adv { > probe myprobe(int64_t param1, int32_t param2, int64_t > param3); > }; > > Dtrace probe: > adv$1:::myprobe > { > /* translation section */ > this->param1 = (curpsinfo->pr_dmodel == PR_MODEL_LP64) ? > arg0 : (`utsname.machine == "i86pc") ? ((arg1 << 32) | &...
2007 Feb 20
0
Standardized residual variances in SEM
...malized Residuals Min. 1st Qu. Median Mean 3rd Qu. Max. -2.6300 -0.5640 -0.0728 -0.0067 0.5530 3.5500 Parameter Estimates Estimate Std Error z value Pr(>|z|) param1 0.78 0.073 10.7 0.0e+00 Q1 <--- G param2 0.79 0.065 12.1 0.0e+00 Q2 <--- G param3 0.63 0.073 8.5 0.0e+00 Q3 <--- G param4 0.74 0.066 11.2 0.0e+00 Q4 <--- G param6 0.81 0.068 11.9 0.0e+00 Q6 <--- G param7 0.65 0.060 11.0 0.0e+00 Q7 <--- G param9 0.60 0.059 10.1 0.0e+00 Q9 <--- G param10 0.64 0.06...
2003 Oct 28
1
error message in simulation
...4 2.4 with 512 MB memory. Thanks in advance. best regards, Yu-Kang Tu Clinical Research Fellow Leeds Dental Institute University of Leeds ## change scores simulation close.screen(all=TRUE) split.screen(c(3,3)) nitns<-10000 nsims<-100 r<-0.1 param1<-c(1:nitns) param2<-c(1:nitns) param3<-c(1:nitns) param4<-c(1:nitns) param5<-c(1:nitns) param6<-c(1:nitns) param7<-c(1:nitns) param8<-c(1:nitns) param9<-c(1:nitns) param10<-c(1:nitns) param11<-c(1:nitns) param12<-c(1:nitns) param13<-c(1:nitns) param14<-c(1:nitns) for(itn in 1:nitns){ g<-rbinom(nsi...
2006 Apr 27
3
Routing problem
Hi, I am having a routing problem and can''t figure out why its happing. I have added the following line in my routing.rb file. map.connect ''name/:id'', :controller => ''controller_name'', :action => ''action_name'' When I use http://domain.com/controller_name/action_name/id then it works fine on the local machine using webrick
2011 Sep 16
1
copula con marginales multivariantes
...Es decir, Copula(F(x,y), G(w,z))) En el caso de funciones marginales univariantes, un ejemplo de la normal multivariante quedaria de la siguiente forma, copulagaussiana<-mvdc(normalCopula(vector_de_correlaciones,dim=3,dispstr ="un"),c(rep("norm",3)),list(param1,param2,param3)) donde ''vector_de_correlaciones'' es un vector con las componentes del triángulo superior de la matriz de correlaciones ordenadas adecuadamente. La función entiende así que la matriz es simétrica con elementos de la diagonal 1''s; y donde param1 se corresponde con los par...
2006 May 18
6
Form actions with additional parameters
Hiall, I want to give the action of a form an additional parameters but can''t figure out how to do it. My code looks like this <%= start_form_tag :action => ''create'', next_step => true %> <%= render :partial => ''user_form'' %> <%= render :partial => ''community_form'' %> <%= submit_tag
2006 Jul 18
5
a best way to write this.
I have a form, with 3 fields, then in my controller I get the paramters to run a query but I don''t want to filter with paramters if they are nil or blank... I''m doing this @condition = '''' if(params.....) @condition = @condition + " myparamter = " + params[..... if(params.....) @condition = @condition + " myparamter = " +
2008 Jul 17
2
problems with validation on STI
I have the following STI table: def self.up create_table :distributions do |t| t.string :type t.integer :simulation_id t.string :dist_name t.string :desc, :default=> ''fixed'' t.float :param1, :default => 5.0 t.float :param2, :param3 t.timestamps #fields for RscDist t.integer :resource_id #fields for LoadDist t.integer :load_id end end My model file looks like this: class Distribution < ActiveRecord::Base validates_presence_of :desc, :param1 validates_uniqueness_of :dist_name,...
2019 Apr 04
2
single-threaded code-gen and how to make it support multi-thread
...or(long ErrorLevel) Line 344 C ntdll.dll!RtlpHpHeapHandleError(_HEAP_FAILURE_TYPE FailureType, unsigned __int64 HeapAddress, unsigned __int64 Address) Line 670 C ntdll.dll!RtlpLogHeapFailure(_HEAP_FAILURE_TYPE FailureType, void * HeapAddress, void * Address, void * Param1, void * Param2, void * Param3) Line 158 C ntdll.dll!RtlFreeHeap(void * HeapHandle, unsigned long Flags, void * BaseAddress) Line 352 C ucrtbase.dll!_free_base(void * block) Line 105 C++ XXXTest.exe!llvm::StringMapImpl::RehashTable(unsigned int BucketNo) Line 238 C++ XXXTest.exe!llvm::StringMap<llvm::ConstantDataSeque...
2019 Apr 04
2
single-threaded code-gen and how to make it support multi-thread
...Line 344 C > ntdll.dll!RtlpHpHeapHandleError(_HEAP_FAILURE_TYPE FailureType, > unsigned __int64 HeapAddress, unsigned __int64 Address) Line 670 C > ntdll.dll!RtlpLogHeapFailure(_HEAP_FAILURE_TYPE FailureType, void * > HeapAddress, void * Address, void * Param1, void * Param2, void * Param3) > Line 158 C > ntdll.dll!RtlFreeHeap(void * HeapHandle, unsigned long Flags, void * > BaseAddress) Line 352 C > ucrtbase.dll!_free_base(void * block) Line 105 C++ > XXXTest.exe!llvm::StringMapImpl::RehashTable(unsigned int BucketNo) > Line 238 C++ > XXXTest.exe!llvm::S...
2012 Jun 26
1
Zero inflated: is there a limit to the level of inflation
...udy area and calcuated a count value for each individual per season per year for each grid cell. The count value is the number of time an individual was present in each grid cell. For illustration my data columns look something like this and are repeated for each individual: Cell_ID Param1 Param2 Param3 Param4 COUNT Name Year Season Cov 1 160.565994 729.08 1503 7930.3 0 AA 2010 AUT Open 1 160.565994 729.08 1503 7930.3 22 AA 2011 SPR Open 1 160.565994 729.08 1503 7930.3 12 AA 2009 SUM Open 1 160.565994 729.08 1503 7930.3 0 AA 2010 SUM Open 2 169.427001 491.87 1503.31 5101.09 0 AA 2010 AUT oldHard 2...
2006 Mar 13
1
Constrained least squares
Is there a function in R for constrained linear least squares? I used the matlab function LSQLIN: my aim is to obtain non-negative regression coefficients which sum 1. Thanks in advance, domenico vistocco ___________________________________ Yahoo! Mail: gratis 1GB per i messaggi e allegati da 10MB http://mail.yahoo.it
2008 Nov 19
1
selection list
Hello! I want to create a command for choosing input parameters via a new window that shows a table in which the parameters can be written in. R should open a seperate window in which the user is asked to put in some values (just numbers), afterwards a new file containing these values should be created and saved in the working directory. Does anybody how I can solve that problem and which package
2009 May 27
1
DAHDI and hangup issue when playing the IVR
...call when playing the IVR..(it will send the hangup signal after finishing the IVR promt..) is there any specific setting to avoid such incidents ? iam using busycount as 3, signalling=fxs_ks ;toneduration=100 callwaiting=yes threewaycalling=yes callreturn=yes echocancel=128,param1=32,param2=0,param3=14 echocancelwhenbridged=yes echotraining=yes echotraining=800 busycount=3 hanguponpolarityswitch=yes ringtimeout=8000 group=1 context=incoming immediate=yes jitterbuffers=4 jbenable = yes echocancel=yes channel=>1-4 ;overlapdial=yes ;pulsedial=yes dtmfmode=rfc2833 ;relaxdtmf=yes ;rxgain=10.0 ;t...
2006 Feb 06
1
Parameters to Event Handler Function
I need a way to pass parameters to an event handler function other than just the e. I''m declaring the handler as such: Event.observe(''regmenu'', ''mouseover'', togglein, false); I need a way to pass parameters to the togglein function. I''m getting tripped up by the fact that the event object is getting automatically passed. -- Yehuda Katz Web
2014 Apr 16
0
Configure restful web service in rails
Hi, I am trying to create a Rest web service in my rails application. I need to configure urls for it as below. localhost:3000/book/book_id/new/param1/param2/param3/param4/... localhost:3000/book/book_id/next localhost:3000/book/book_id/delete I dont have a view pages for it since it returns in json format.Please help.So what is the best way to configure these urls via routes. -- You received this message because you are subscribed to...