Metadata-Version: 2.4
Name: arclength_continuation
Version: 0.1.0
Summary: Python script that demonstrates how to use pseudo-arclength continuation.
Author-email: Raymond Langer <raymond.langer@gmx.net>
License-Expression: MIT
Project-URL: homepage, https://github.com/raymondlanger/arclength_continuation
Keywords: math,continuation,numerical methods
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20
Requires-Dist: matplotlib>=3.4
Dynamic: license-file

# Pseudo-Arclength Continuation Example

This repository contains a Python script (`arclength_continuation.py`) that demonstrates how to use Newton’s method in conjunction with a pseudo-arclength continuation technique to find points on the unit circle. This approach can handle singular points where naive continuation might fail.

## Installation

`arclength-continuation` can be installed via `pip` or an equivalent via:

```console
pip install arclength-continuation
```

## Usage

```console
python arclength_continuation.py -d -0.2 -n 30 -t 1e-9 --no-predictor
```

