hdsp2
Version:
High-Dimensional Space Projections
14 lines • 353 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var SparseTerm = (function () {
function SparseTerm(i, j, d) {
this.i = i;
this.j = j;
this.d = d;
this.w_ij = 0;
this.w_ji = 0;
}
return SparseTerm;
}());
exports.default = SparseTerm;
//# sourceMappingURL=SparseTerm.js.map