Skip to content

Commit

Permalink
updated tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
hzarei4 committed Jul 15, 2024
1 parent 76b7d14 commit 85efbbc
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions docs/src/tutorial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,3 @@ heatmap(data_transformed_m, aspect_ratio=1

# Now we try to do the transformation using a polynomial function
# we first define the interpolation object using the DataToFunctions package with a polynomial of order 1
f_polynomial = get_function_poly(data, 1)

# define the polynomial coefficients
params = (1.0, 0.0, 1.0, 0.0, 1.0, 0.0)

# apply the transformation
data_transformed_polynomial = f_polynomial((params))

heatmap(data_transformed_polynomial, aspect_ratio=1
, title="Transformed data using a polynomial function of order 1"
, titlefontsize=10, size=(500, 500)
, xlabel="X", ylabel="Y")

0 comments on commit 85efbbc

Please sign in to comment.