Bsoft object
struct Bmatrix
Source:
include/rwmatrix.h
Description:
General square matrix structure.
Features:
An nxn matrix with n column(row) labels.
Intended to be used for pairwise comparisons.
Code:
struct Bmatrix {
int rows, cols;
// Matrix size: number of rows, number of columns
Bstring* rlabel;
// Row labels
Bstring* clabel;
// Column labels
double* data;
// Contents
};
Other objects included:
class Bstring
Generated by bdoc.pl on Mon Jun 15 11:55:12 2009
Back to the Bsoft home