Skip to content

Commit

Permalink
Added scipy.spatial.transform Rotation and Slerp classes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisflesher committed Jun 7, 2023
1 parent 5639e19 commit 3203b57
Show file tree
Hide file tree
Showing 7 changed files with 745 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,9 @@ Remember to align the itemized text with the first line of an item within a list

## jax 0.4.12

* Changes
* Added {class}`scipy.spatial.transform.Rotation` and {class}`scipy.spatial.transform.Slerp`

* Deprecations
* The following APIs have been removed after a 3 month deprecation period, in
accordance with the {ref}`api-compatibility` policy:
Expand Down
11 changes: 11 additions & 0 deletions docs/jax.scipy.rst
Expand Up @@ -89,6 +89,17 @@ jax.scipy.signal
stft
welch

jax.scipy.spatial.transform
---------------------------

.. automodule:: jax.scipy.spatial.transform

.. autosummary::
:toctree: _autosummary

Rotation
Slerp

jax.scipy.sparse.linalg
-----------------------

Expand Down
13 changes: 13 additions & 0 deletions jax/_src/scipy/spatial/__init__.py
@@ -0,0 +1,13 @@
# Copyright 2023 The JAX Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

0 comments on commit 3203b57

Please sign in to comment.