I wanted to look at the source for the getRowVector
method of the RealMatrix
class in the Apache Commons Math library. I found it here: grepcode.
For some reason though, seemingly none of the methods shown have any implementation; they all look like function prototypes:
RealVector getRowVector(int row) throws MatrixIndexException;
After searching though, I found that Java doesn't have prototypes. What is the purpose of the code above? Is there an actual implementation somewhere?
It's odd because the full implementation for the similar RealVector
class is given as I'd expect; it's just RealMatrix
that's like this.