# kabsch

> kabsch algorithm

Latest version **0.0.2** (published 2014-05-31) · 0 weekly downloads

## Install

```sh
npm install kabsch
pnpm add kabsch
yarn add kabsch
bun add kabsch
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2014-05-31 |
| First published | 2014-04-30 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Maintainers | ttrfstud |

## Links

- npm: https://www.npmjs.com/package/kabsch
- Repository: https://github.com/ttrfstud/kabsch
- Issues: https://github.com/ttrfstud/kabsch/issues
- npm.io page: https://npm.io/package/kabsch

## Dependencies (3)

- [mmult](https://npm.io/package/mmult.md) 0.0.0
- [transpose](https://npm.io/package/transpose.md) 0.0.2
- [jacobi-eigenvalue](https://npm.io/package/jacobi-eigenvalue.md) 0.0.4

## Recent versions

- 0.0.2 (latest) — 2014-05-31
- 0.0.1 — 2014-05-31
- 0.0.0 — 2014-04-30

## README

kabsch algorithm
===================
kabsch algorithm implemented as outlined [here](http://boscoh.com/protein/rmsd-root-mean-square-deviation.html). the signature of the only exported method is _(set1, set2)_, where set1 and set2 are matrices, each column in those is (x,y,z) coordinate for a point. like this (2 points):

```javascript
[[2, 3], [3, 4], [4, 5]]
```

this set represents two points: (2, 3, 4) and (3, 4, 5).

it uses jacobi-eigenvalue internally to compute eigenvalues. check your args before invoking it!

---
_Source: https://npm.io/package/kabsch · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
