search for: m_list

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

Did you mean: _list
2005 Jun 09
1
the svDialogs package
Hi Philippe and R community, I am trying to use some functions from the svDialogs package but I get some werid errors I do not understand: > library(svDialogs) > m_list <- as.list(1:10) > guiDlgDoubleList(m_list, m_list) Error in guiDlgDoubleList(m_list, m_list) : Not yet implemented! > guiDlgList(m_list) Error in guiDlgList(m_list) : couldn't find function "guiSetFonts.tcltk" Am I doing anything wrong ?? Do I need some othe...
2011 Jun 07
2
[LLVMdev] llvm-gfortran
Hello folks, I want to compile some fortran code to IR, but llvm-gfortran 4.2-2.9 does compile my fortran code. gfortran 4.2.1 fail with the same error. but gfortran 4.4.6 and ifort compiles fine. Attached is the file causing error. Error message is m_List.F90: In function 'exporttostring_': m_List.F90:925: error: conversion to non-scalar type requested I wonder if there any way I can get upgrade the gfortran part of llvm-gfortran? If any, I will go with that, otherwise I will try dragonegg. thank you yuanfang -------------- next part -----...
2011 Jun 07
0
[LLVMdev] llvm-gfortran
...mail.com> wrote: > Hello folks, > I want to compile some fortran code to IR, but llvm-gfortran 4.2-2.9 does > compile my fortran code. gfortran 4.2.1 fail with the same error. but > gfortran 4.4.6 and ifort compiles fine. Attached is the file causing > error. Error message is > m_List.F90: In function 'exporttostring_': > m_List.F90:925: error: conversion to non-scalar type requested > I wonder if there any way I can get upgrade the gfortran part of > llvm-gfortran? If any, I will go with that, otherwise I will try dragonegg. dragonegg is definitely the way to...
2009 Nov 05
1
how to collapse list into a matrix with names
Dear R-Helpers, I have the following code: data = read.csv("test.csv",header=T,na.strings="-",row.names=1) myData=as.matrix(data) ##myData is a 102x19 matrix myList = alply(myData, 2,function(x){matrix(x,ncol=6,byrow=T)}) ##myList is a list containing 19 matrices with the following names > names(myList) [1] "*ES" "*ET" "*ER"