search for: 01577

Displaying 6 results from an estimated 6 matches for "01577".

Did you mean: 1577
2011 Aug 18
2
what characteristics of model curve do parameters denote
...starting values. Here's the model: modPoplar<- nls(Diameter ~ d*(1-exp(-b *Age))^a ,start=list(a=20,b=0.9,d=33)) I attached the graph, too. Hoping for your answers! Best, Anna -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Telefon: 01577-7805329 E-Mail: gretschel.anna at googlemail.com
2016 Mar 09
2
[CodeGen] PeepholeOptimizer: optimizing condition dependent instrunctions
Hi, I find it's quite strange how condition dependent instructions are processed in PeepholeOptimizer::runOnMachineFunction: 01577 if ((isUncoalescableCopy(*MI) && 01578 optimizeUncoalescableCopy(MI, LocalMIs)) || 01579 (MI->isCompare() && optimizeCmpInstr(MI, &MBB)) || 01580 (MI->isSelect() && optimizeSelect(MI, LocalMIs))) { 01581 // MI is deleted...
2013 Aug 22
2
--disable-appliance creates supermin.d files
Why does the toplevel Makefile process appliance/, and creates supermin.d during make install, whith configure --disable-appliance? I have to double check what actually happens, it seems it causes startup failures if the resulting binary packages are started on a host that happens to have supermin installed. Olaf
2013 Aug 22
1
Re: --disable-appliance creates supermin.d files
...ath /lib/modules/3.9.11-6.olh_kernel_sles11sp3.2-kernel-linux-3_9 is a directory checking modpath /lib/modules/3.9.0-probook-bko60585-07168-g73287a4 is a directory checking modpath /lib/modules/3.9.0-probook-bko60585-12587-gc4cc75c is a directory checking modpath /lib/modules/3.9.0-probook-bko60585-01577-g507ffe4 is a directory checking modpath /lib/modules/3.9.0-rc3-probook-bko60585-00394-g6b83f91 is a directory checking modpath /lib/modules/3.11.0-rc2-probook-bko60585 is a directory checking modpath /lib/modules/3.9.0-rc1-probook-bko60585-00098-g8c9e642 is a directory checking modpath /lib/module...
2016 Mar 10
2
[CodeGen] PeepholeOptimizer: optimizing condition dependent instrunctions
...strunctions Hi Evgeny, On Mar 9, 2016, at 6:28 AM, Evgeny Astigeevich via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> wrote: Hi, I find it's quite strange how condition dependent instructions are processed in PeepholeOptimizer::runOnMachineFunction: 01577 if ((isUncoalescableCopy(*MI) && 01578 optimizeUncoalescableCopy(MI, LocalMIs)) || 01579 (MI->isCompare() && optimizeCmpInstr(MI, &MBB)) || 01580 (MI->isSelect() && optimizeSelect(MI, LocalMIs))) { 01581 // MI is deleted...
2011 Aug 17
1
Interpreting parameters of sigmoid fct
Dear list, I'm trying to fit a chapman-richards equation to my data, only I cannot interpret the parameters a, b and d. I know that the parameter b denotes the asymptote, but for the others I couldn't figure out. But I do need to know this in order to set my starting values. Here's the model: modPoplar<- nls(Diameter ~ d*(1-exp(-b *Age))^a ,start=list(a=20,b=0.9,d=33)) I attached