Skip to content

Commit 6d2bb9c

Browse files
committed
Update blog post.
1 parent 6191a85 commit 6d2bb9c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

_posts/2020-06-19-cubic-hermite-spline.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ subheadline: "Perform cubic Hermite spline interpolation in Julia"
55
description: "This is a tutorial on how to use the Julia package CubicHermiteSpline.jl, which performs a [cubic Hermite spline interpolation](https://en.wikipedia.org/wiki/Cubic_Hermite_spline) on an array of data points given that their associated gradients at each point are known in advance."
66
author: lyx
77
date: 2020-06-19
8-
modified: 2020-08-25
8+
modified: 2024-02-17
99
image:
1010
feature: false
1111
twitter: CubicHermiteSpline/twitter.png
@@ -17,7 +17,10 @@ show_meta:
1717

1818
This is a tutorial on how to use the Julia package [CubicHermiteSpline.jl](https://github.com/liuyxpp/CubicHermiteSpline.jl), which performs a [cubic Hermite spline interpolation](https://en.wikipedia.org/wiki/Cubic_Hermite_spline) on an array of data points, $(x_i, y_i)$, given that their associated gradients, $k_i=(dy/dx)_i$, are known in advance.
1919

20-
New: v0.2.2 can now compute the 1st order derivative of the interpolated function.
20+
New
21+
22+
- v0.3.0 can now perform bivariate cubic Hermite spline interpolation for 2D data points (regular and irregular grids are both supported).
23+
- v0.2.2 can now compute the 1st order derivative of the interpolated function.
2124

2225
<!--more-->
2326

0 commit comments

Comments
 (0)