orthonormal
This module contains functions to calculate the orthonormal basis representing the hyperplane $\Pi$ that is tangential to the hypersphere $S_{d-1}$ representing the input state.
isotropic.orthonormal
This module contains functions for constructing orthonormal basis of Pi.
get_orthonormal_basis(Phi)
Construct an orthonormal basis given a point $\Phi$ on a unit sphere.
The point $\Phi$ is given by a d+1 dimensional vector and the orthonormal basis consists of d vectors each of dimension d+1, which are orthogonal to $\Phi$ and to each other.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
Phi
|
ArrayLike
|
A point on the unit sphere, should be a normalized vector. |
required |
Returns:
Type | Description |
---|---|
Array
|
An orthonormal basis of dimension (d, d+1). |
Source code in src/isotropic/orthonormal.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|