Re: [R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-12 Thread Uwe Ligges
You obviously have a combination from R code in package base and compiled C code of base R that do not match. Point is that the matrix R code passes 7 arguments to the underlying .Internal code that should also expect 7 arguments. If just 5 are passes the R code is from an ancient version of

[R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-01 Thread Robert Pfister
Hello, I am having a problem with the function matrix. Specifically, when I pass three arguments (two more being instantiated in the function), I get the following error message: Error in matrix(0, 30, 10) : 5 arguments passed to .Internal(matrix) which requires 7 I looked into it, and

[R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-01 Thread Robert Pfister
Hello, I am having a problem with the function matrix. Specifically, when I pass three arguments (two more being instantiated in the function), I get the following error message: Error in matrix(0, 30, 10) : 5 arguments passed to .Internal(matrix) which requires 7 I looked into it, and

Re: [R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-01 Thread Jean V Adams
Subject: [R] 5 arguments passed to .Internal(matrix) which requires 7 Sent by: r-help-boun...@r-project.org Hello, I am having a problem with the function matrix. Specifically, when I pass three arguments (two more being instantiated in the function), I get the following error message: Error

Re: [R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-01 Thread Jeff Newmiller
Y'know, you aren't likely to get many responses with this kind of request. Why don't you go read the posting guidelines and come back with: R version info Sample data Actual commands used, so we can reproduce the problem ---

Re: [R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-01 Thread Robert Pfister
USA From: Robert Pfister rw...@virginia.edu To: r-help@r-project.org Date: 08/01/2011 11:56 AM Subject: [R] 5 arguments passed to .Internal(matrix) which requires 7 Sent by: r-help-boun...@r-project.org -- Hello, I am having a problem with the function

Re: [R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-01 Thread Jean V Adams
), missing(ncol))) } environment: namespace:base I'm running Windows R version 2.13.0 (2011-04-13). Jean From: Robert Pfister rw...@virginia.edu To: Jean V Adams jvad...@usgs.gov Cc: r-help@r-project.org Date: 08/01/2011 01:35 PM Subject: Re: [R] 5 arguments passed to .Internal(matrix) which requires 7

Re: [R] 5 arguments passed to .Internal(matrix) which requires 7

2011-08-01 Thread Robert Pfister
running Windows R version 2.13.0 (2011-04-13). Jean From: Robert Pfister rw...@virginia.edu To: Jean V Adams jvad...@usgs.gov Cc: r-help@r-project.org Date: 08/01/2011 01:35 PM Subject: Re: [R] 5 arguments passed to .Internal(matrix) which requires 7 -- Yes