From c058d2d4283a0b733f6f32d0518c03d2b68b3721 Mon Sep 17 00:00:00 2001 From: Wessel Bruinsma Date: Mon, 11 Jan 2021 10:56:10 +0100 Subject: [PATCH] Add ToC to README for better navigability --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa45f484..9dce5f67 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,17 @@ Right now here are the differences: - FiniteDiff.jl supports caching and in-place computation - FiniteDiff.jl supports coloring vectors for efficient calculation of sparse Jacobians - #### FDM.jl This package was formerly called FDM.jl. We recommend users of FDM.jl [update to FiniteDifferences.jl](https://github.com/JuliaDiff/FiniteDifferences.jl/issues/37). +#### Contents + +* [Scalar Derivatives](#scalar-derivatives) + - [Dealing with Singularities](#dealing-with-singularities) + - [Richardson Extrapolation](#richardson-extrapolation) + - [A Finite Difference Method on a Custom Grid](#a-finite-difference-method-on-a-custom-grid) +* [Multivariate Derivatives](#multivariate-derivatives) + ## Scalar Derivatives Compute the first derivative of `sin` with a 5th order central method: