Displaying 4 results from an estimated 4 matches for "newentry".
Did you mean:
  new_entry
  
2011 Jan 27
1
subloop - flexible coding - variable number of loops
...the brackets. Any suggestions? 
 
Cheers,
 
Peter 
 
Department of Mathematics and Statistics
University of Canterbury
New Zealand
 
 
n <-2
  
matrixallo <- matrix(nrow=0,ncol=n) 
  
for(i in 1:20)
    {
    for (j in 1:20)
      {
      if (i+j == 20)
        {
        newentry<- cbind(i,j)
        matrixallo <- rbind(matrixallo,newentry)
        } 
      }
    }
  
  
n <-3
  
matrixallo <- matrix(nrow=0,ncol=n) 
 
  for(i in 1:20)
    {
    for (j in 1:20)
      {
      for (k in 1:20)
        {
        if (i+k+j == 20)
          {...
2013 May 13
1
[LLVMdev] Problem with MachineFunctionPass and JMP
Hi !
I'm trying to modify the code in a machine function pass…
I added a new basicblock and I want to add a jump to an another BB from my new BB.
Here is my code :
bool Obfuscation::runOnMachineFunction(MachineFunction &MF) {
   MachineBasicBlock *newEntry = MF.CreateMachineBasicBlock();
   MF.insert(MF.begin(), newEntry);
   std::vector<MachineBasicBlock*> origBB;
   for(MachineFunction::iterator i = MF.begin(); i != MF.end(); ++i)
      origBB.push_back(i);
   for(unsigned int i = 0; i < origBB.size(); ++i)
      origBB.at(i)->mov...
2004 Dec 17
8
Union of list elements
[This email is either empty or too large to be displayed at this time]
2006 Feb 13
3
Insertion.top & tables
I have had trouble making Insertion.top work with tables
I would like to do something like
<table>
<div = "newentry">
<tr><td> First entry</td></tr>
<tr><td> Second entry</td></tr>
</div>
</table>
so that Insertion.top inserts the new row above the first entry. So  
far this has not worked. Has anyone else tried this?
Deco