search for: splitnam

Displaying 4 results from an estimated 4 matches for "splitnam".

Did you mean: splitname
2003 Oct 16
2
returning dynamic variable names from function
...NIPPET BELOW: loadFiles <- function() { fullFileNames <- choose.files(filters = c("Fluor file (*.data,*.Dat)", "*.dat;*.Dat")) numFiles <- length(fullFileNames) fileNames <- basename(fullFileNames) # removes the all the paths from the full filenames splitNames <- strsplit(fileNames,"_") # create a "list" of strings separated by the "_" character dfNames <- sapply(splitNames,"[",1) # or I could use "sapply(splitNames, function (x) x[1])" OR EVEN "unlist(lapply(splitNames, function...
2013 Apr 25
1
Linear Interpolation : Missing rates
Dear R forum I have data.frame as df = data.frame(rate_name = c("USD_1w", "USD_1w", "USD_1w", "USD_1w", "USD_1m", "USD_1m", "USD_1m", "USD_1m", "USD_2m", "USD_2m", "USD_2m", "USD_2m",  "GBP_1w", "GBP_1w", "GBP_1w", "GBP_1w",
2013 Apr 24
2
[LLVMdev] Questions about attaching DWARF source code debugging information to generated LLVM-IR.
...I be able to do?). The updated file that describes the test case is at: https://dl.dropboxusercontent.com/u/6229900/dwarf1_new.txt I did have to make a few changes to my code to make it work with the latest llvm. In particular DIBuilder::createCompileUnit required an additional parameter "SplitName". But when I added that parameter and fixed a few other things the results were the same. I think I'm generating the DWARF compile_unit, subprogram, lexical-block, and line-number information correctly but I can't seem to get it to work with lldb. If anyone can take a look at it an...
2013 Apr 24
0
[LLVMdev] Questions about attaching DWARF source code debugging information to generated LLVM-IR.
...> The updated file that describes the test case is at: https://dl.dropboxusercontent.com/u/6229900/dwarf1_new.txt > > I did have to make a few changes to my code to make it work with the latest llvm. > In particular DIBuilder::createCompileUnit required an additional parameter "SplitName". > But when I added that parameter and fixed a few other things the results were the same. > > I think I'm generating the DWARF compile_unit, subprogram, lexical-block, and line-number information correctly but I can't seem to get it to work with lldb. > > If anyone...