UNPKG

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