From 63a72d3d021a9d891e88670a406d7e8daa443203 Mon Sep 17 00:00:00 2001 From: MRIDUL JAIN <105979087+Spinachboul@users.noreply.github.com> Date: Thu, 4 Jan 2024 13:18:02 +0530 Subject: [PATCH] Update tensor_prod.md --- docs/src/tensor_prod.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/docs/src/tensor_prod.md b/docs/src/tensor_prod.md index 53e5b6b7..2cd30afd 100644 --- a/docs/src/tensor_prod.md +++ b/docs/src/tensor_prod.md @@ -1,9 +1,6 @@ # Tensor product function -A tensor product combines multiple functions or vectors. It is a mathematical operation that takes two vector spaces and produces another vector space, capturing their joint behavior across multiple dimensions. -For instance, consider a tensor product function defined as follows: - -```\[ f(x) = ∏ᵢ=₁ᵈ cos(aπxᵢ) \]``` +The tensor product function is defined as: ```\[ f(x) = ∏ᵢ=₁ᵈ cos(aπxᵢ) \]``` Let's import Surrogates and Plots: ```@example tensor @@ -42,15 +39,3 @@ plot!(xs, loba_1.(xs), label="Lobachevsky", legend=:top) plot!(xs, krig.(xs), label="Kriging", legend=:top) ``` -## Kriging Plot - -![kriging](https://github.com/Spinachboul/Surrogates.jl/assets/105979087/906e6688-db47-48be-90d1-ea471aacac16) - -## Lobachevsky Plot - -![lobachevsky](https://github.com/Spinachboul/Surrogates.jl/assets/105979087/678cfc13-0aec-4488-8e4d-39649853ecdd) - -## Combined Plot - -![combined_plot](https://github.com/Spinachboul/Surrogates.jl/assets/105979087/46762f0d-50c5-4d6c-961a-236fd9fb3ad5) -