Displaying 5 results from an estimated 5 matches for "parm3".
Did you mean:
parms
2002 Oct 23
3
How to pipe debugmsg to a file?
Is there a wine option to send the log output to a file?
I'm doing the following:
wineconsole --debugmsg +all program_name parm1 parm2 parm3 > /mylog.txt
mylog.txt is not receiving a copy of the millions, nay billions!, of
messages output.
I'm using Redhat 7.3 and the 10/07/2002 RPMs.
- Bill
2006 Aug 10
1
Passing parameters defined in a function or something
Hi,
I have method I want to call ... it can receive * number of parameters.
I also have 3 parms that I want to pass often, so I have defined them in
a separate function:
def my_params
{ :parm1 => 1, :parm2 => 2, :parm3 => 3 }
end
And I want to call my method like this:
mymethod :parm4 => 4, my_params
Now - this doesn''t work - as my_params is a hash of params, which isn''t
the same as calling
mymethod :parm4, :parm1 => 1, :parm2 => 2, :parm3 => 3
Pretty basic - yet fundamenta...
2010 Dec 22
2
how to pass object "members" in functions
Hello,
This is an R-syntax question when attempting to manipulate/access objects
when passed to a function.
I have a function attempting to just print values attached to an argument
object. For example,
printThis <- function(obj, parm2, parm3) {
print(obj.stuff1)
print(obj.stuff2)
}
where I've assigned stuff1 and stuff2 to the actual object passed as such
actualObject.stuff1 <- c("list","of","something")
actualObject.stuff2 <- c("list","of","something other thing&q...
2007 Oct 01
1
saving and loading complex objects
...se
t.index = xy$indx
# genetically select predictor column space
result = intGa( response =response, ... ,
FUN = LM, monitor = F, monitorFun = nn.Monitor,
Evaluator = Std.Eval, wildCardPct = 0.10,
parm1 = 4, parm2 = 1, parm3 = 3 )
x.model=result$bestModel
SaveObj( x=x.model, nn=nn[i] )
rm(result,x.model)
} # end for
return( formulaLst )
} # end of allArimaVery Sincerely,Lloyd Lubet
[[alternative HTML version deleted]]
2004 Nov 08
3
location of key in panels of trellis plot
...uot;A","B","C","D")),
var1=rnorm(160),
var2=rep(c(1:40),4),
parm1=rep(c(987.54,754,887.654,902),c(40,40,40,40)),
parm2=rep(c(254.89,376.001,308,297.102),c(40,40,40,40)),
parm3=rep(c(0.2,38.5,1.5,0.654),c(40,40,40,40)))
####Use xyplot to plot var1 against var2 for each condition. No problem.
xyplot(var1~var2|condition,data=dataframe,ylim=c(4,-4))
####Now I want to add a key to each panel indicating the values on the
parameters 1-3.
####To do so I write my own p...