search for: misencod

Displaying 3 results from an estimated 3 matches for "misencod".

Did you mean: mimencode
2009 Jan 28
0
Sweave problem with greek text
...http://costis.name/0various/lists/R/sweave/successful.greek.tex , which happily produces http://costis.name/0various/lists/R/sweave/successful.greek.pdf . I tried using Sweave on the iso-8859-7 encoded .Rnw file: http://costis.name/0various/lists/R/sweave/unsuccessful.sweave.Rnw , but I am getting misencoded greek text and also misencoded R code as it appears in http://costis.name/0various/lists/R/sweave/unsuccessful.sweave.pdf . The .tex file that Sweave produces is located at http://costis.name/0various/lists/R/sweave/unsuccessful.sweave.tex I am also the latex R error code http://costis.name/0va...
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
...->Lex(); // Eat the ')'. return X86Operand::CreateMem(SegReg, Disp, BaseReg, IndexReg, Scale, MemStart, MemEnd); @@ -587,24 +649,24 @@ ParseInstruction(const StringRef &Name, SMLoc NameLoc, // For now, just do a manual check to prevent silent misencoding. if (Is64Bit) { if (Name == "popfl") - return Error(NameLoc, "popfl cannot be encoded in 64-bit mode"); + return Parser->Error(NameLoc, "popfl cannot be encoded in 64-bit mode"); else if (Name == "pushfl") - return Error(Name...
2009 Jan 28
2
t.test in a loop
Hi All, I've been having a little trouble with creating a loop that will run a a series of t.tests for inspection, Below is the code i've tried, and some checks i've looked at. I've used the get(paste()) idea as i was told previously that the use of the eval should try and be avoided. I've run a single syntax to check that my systax is correct and works without any problems