This is a follow-up question to a previous post.

I need to write an initialize() method for a S4 class (named Band) that expects a matrix and a value for k. It should be defined as a function with formal arguments (x, k), and should put the lower triangular elements of X into the object.

Any suggestions appreciated.

link|improve this question
4  
My suggestion is to read the manual and/or some of the fine tutorials available on CRAN. This introduction to s4 is probably a good place to start. – Ista Mar 5 '11 at 2:43
3  
initialize methods are pretty tricky; maybe you really want to write a constructor Band <- function(x, k) { <...> } that calls new("Band", slotA=<...>, slotB=<...>) or perhaps a coerce method using setAs. – Martin Morgan Mar 5 '11 at 16:45
2  
feedback

1 Answer

The Matrix package has many examples of matrix-related S4 classes and methods:

http://cran.r-project.org/web/packages/Matrix/

Download the source and check it out.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.