search for: _value_

Displaying 11 results from an estimated 11 matches for "_value_".

Did you mean: _values_
2011 Oct 07
1
ANOVA/ANCOVA Repeated Measure Mixed Model
...periment, does this matter in my ANOVA? I am interested in making a between and within group comparison of responses to A, B, and C <he>Here is what I am doing: My data is arranged in the following way Group Subject Condition Stimulus Response One S1 Alert A _Value_ One S1 Alert B _Value_ One S1 Alert C _Value_ One S1 Passive A _Value_ One S1 Passive B _Value_ One S1 Passive C _Value_ One S2 Alert A _...
2008 Oct 14
2
getAnywhere
Hi List, I am trying to look up an object using getAnywhere, where the object I am looking for is given by the _value_ of the variable I am looking for. Since getAnywhere calls substitue on its argument it is looking for an object with the name of the argument not its value. Is there a way to work around this, or do I have to make my own getAnywhere without the substitute? This is an example to clarify things: &gt...
2011 Aug 15
3
[LLVMdev] structured types as function arguments
Hi, When calling a function, does the llvm code generator support passing structured types (arrays, structs, etc.) by _value_? I wrote some small examples, and it seemed to work, but I was wondering if anything can go wrong if the structured types are very large... Thanks, N
2011 Aug 15
0
[LLVMdev] structured types as function arguments
On Mon, Aug 15, 2011 at 9:01 AM, Nicolas Ojeda Bar <nojb at math.harvard.edu> wrote: > Hi, > > When calling a function, does the llvm code generator support passing structured types (arrays, structs, etc.) by _value_? I wrote some small examples, and it seemed > to work, but I was wondering if anything can go wrong if the structured types are very large... It should work; the generated code for passing a large struct value (as opposed to using the byval attribute) gets to be rather inefficient, but I don...
2005 Apr 07
2
hex format
Hello world: Has anyone used hex notation within R to represents integers? Cheers, Steve Vejcik
2006 Oct 31
5
Odd behaviour of removing 'nothing' from an array or data frame
I've just found some behaviour which strikes me as odd, but I'm not sure whether it's a bug or a feature. If you don't mind, I'd like to explain via a couple of examples. Let x = 1:10. Then intuitively, to me at least, the command x[-integer(0)] should leave x untouched. However the actual output under R2.4.0 is integer(0). A slightly more involved example demonstrates
2007 Jul 04
0
[1104] trunk/wxruby2: Added 2.8 methods to TextCtrl & document them; tidy up header file
...function is deprecated and should not be used in new code. Please use the +"change_value":#TextCtrl_changevalue function instead. + </ins><span class="cx"> h4. Parameters </span><span class="cx"> </span><span class="cx"> * _value_ The new value to set. It may contain newline characters if the text control is multi-line. </span><span class="cx"> </span><ins>+ +h3(#TextCtrl_changevalue). TextCtrl#change_value + + *change_value*(%(arg-type)String% value) + +Sets the text value and marks the c...
2020 Jul 10
2
Understand alias-analysis results
...l I can find is "NoAlias". > Overall, to understand why an alias set can have only one pointer looks > quite strange to me.. This seems correct: Note that `int y` is a distinct object in memory, not a pointer, and shares no alias sets with anything (we happen to assign the int _value_ we obtain from pointer `x` by dereferencing it `*x`, but that bears no relevance to aliasing here). Perhaps this can help illustrate the scenario (assuming the URL doesn't get mangled): http://www.pythontutor.com/cpp.html#code=void%20MUSTALIAS%28void%20*p,%20void%20*q%29%20%7B%7D%0A%0Aint%20m...
2020 Jun 18
4
[RFC] A value-tracking LiveDebugValues implementation
...oblem, of "what value number does each machine location contain" at each program point, every DBG_VALUE can be interpreted as assigning a value to a variable, not a location. This gets turned into a transfer function too, and we can then perform another dataflow analysis, propagating what _value_ a variable has in a block, and computing the set of live-in variable values for each block. A specific machine location can be picked after this problem is solved, possibly from several options if multiple locations have the same value. This isn't a completely clean abstraction: predecessors wi...
2007 Mar 21
0
[906] branches/wxruby2/wxwidgets_282: Wx::ComboBox API 2.6 -> 2.8, plus some doc corrections
...</span><del>-* _parent_ Parent window. Must not be NULL. </del><ins>+* _parent_ Parent window. Must not be nil. </ins><span class="cx"> * _id_ Window identifier. A value of -1 indicates a default value. </span><span class="cx"> * _value_ Initial selection string. An empty string indicates no selection. </span><span class="cx"> * _pos_ Window position. </span><span class="cx"> * _size_ Window size. If the default size (-1, -1) is specified then the window is sized </span><span cla...
2020 Jul 09
2
Understand alias-analysis results
Hi again! Replying in chronological order: > On Thu, Jul 9, 2020 at 6:51 PM Shuai Wang <wangshuai901 at gmail.com > <mailto:wangshuai901 at gmail.com>> wrote: > > Hey Matt, > > That's awesome. Thank you very much for all the information and > clarification! Just a few follow up questions. Could you kindly shed > some lights on it? Thank