Displaying 2 results from an estimated 2 matches for "breakpiont".
2012 Nov 16
1
Interpretation of davies.test() in segmented package
...s
especially important for my, flat looking data class.
davies.test() question:
davies.test() only excepts lm() or glm() objects as input. If I run
segmented to find 1 breakpoint instead of 2, I get a totally bogus answer.
Without knowing the breakpoints, how is this test able to assess the proper
breakpiont? It appears to only give 1 best breakpoint, which is not
consistent with the breakpoints found by segmented(). Also, is K the number
of breakpoints or the number of iterations that it evaluates the breakpoint?
Thanks in advance.
lmfit<-glm(TotRad_KW~HRRPUA_kWm2,data=d1)
davies.test(lmfit,se...
2004 Sep 22
0
[LLVMdev] The story is for why I need grab the entry address of BB :)
...ill create a table which record the entry address for each BB. Once the BB has been loaded by pervious instruction, I don't need load it again.
That is why I want to grab the entry address of each BB.
Actually, I tried to use API ptrace to implement the program I mentioned. It means I can set breakpionts at each entry of BB, once the program hits the break point, I can use ptrace to load the next BB to memory. However, I haven't done it by using ptrace. The reason is that I don't know how complex process ptrace did. So I really want to write some assemble code or C to do it if I can.
If...