UNPKG

2.75 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8
9var _base = require('./base');
10
11var _base2 = _interopRequireDefault(_base);
12
13var _arrays = require('../arrays');
14
15var Arrays = _interopRequireWildcard(_arrays);
16
17function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
18
19function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20
21function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
22
23function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
24
25function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } // Internal dependencies
26
27
28/**
29 * The linear kernel calculates the dot product of the two input vectors
30 */
31var LinearKernel = function (_Kernel) {
32 _inherits(LinearKernel, _Kernel);
33
34 function LinearKernel() {
35 _classCallCheck(this, LinearKernel);
36
37 return _possibleConstructorReturn(this, (LinearKernel.__proto__ || Object.getPrototypeOf(LinearKernel)).apply(this, arguments));
38 }
39
40 _createClass(LinearKernel, [{
41 key: 'apply',
42
43 /**
44 * @see {@link Kernel#apply}
45 */
46 value: function apply(x, y) {
47 return Arrays.dot(x, y);
48 }
49 }]);
50
51 return LinearKernel;
52}(_base2.default);
53
54exports.default = LinearKernel;
55module.exports = exports.default;
\No newline at end of file