UNPKG

1.34 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright 2020 Google LLC. All Rights Reserved.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 * =============================================================================
16 */
17import { Tensor1D, Tensor2D } from '../tensor';
18import { TensorLike } from '../types';
19/**
20 * Computes the outer product of two vectors, `v1` and `v2`.
21 *
22 * ```js
23 * const a = tf.tensor1d([1, 2, 3]);
24 * const b = tf.tensor1d([3, 4, 5]);
25 *
26 * tf.outerProduct(a, b).print();
27 * ```
28 * @param v1 The first vector in the outer product operation.
29 * @param v2 The second vector in the outer product operation.
30 *
31 * @doc {heading: 'Operations', subheading: 'Matrices'}
32 */
33declare function outerProduct_(v1: Tensor1D | TensorLike, v2: Tensor1D | TensorLike): Tensor2D;
34export declare const outerProduct: typeof outerProduct_;
35export {};