user635034
user635034

Reputation: 43

S4 class in R for matrix

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.

Upvotes: 1

Views: 1880

Answers (1)

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.

Upvotes: 1

Related Questions