+
    LV-j  ã                   ó~   € R t ^ RIHt ^RIHt ^ RIHtHtHtH	t	 R.t
]! RR	.R7      ]! R
R4      RR l4       4       tR# )z+
Solve the orthogonal Procrustes problem.

)Ú_apply_over_batch)Úsvd)Úarray_namespaceÚxp_capabilitiesÚ_asarrayÚis_numpyÚorthogonal_procrustesF)Újax_jitÚskip_backendsc                ó€  € \        W4      p\        WVRR7      p \        WVRR7      pV P                  ^8w  d   \        RV P                   24      hV P                  VP                  8w  d'   \        RV P                   RVP                   R24      h\        V4      '       d:   \        VP                  VP                  V 4      ,          P                  4      w  rEpMHVP                  P                  VP                  VP                  V 4      ,          P                  4      w  rEpWF,          pVP                  V4      pWx3# )aS	  
Compute the matrix solution of the orthogonal (or unitary) Procrustes problem.

Given matrices `A` and `B` of the same shape, find an orthogonal (or unitary in
the case of complex input) matrix `R` that most closely maps `A` to `B` using the
algorithm given in [1]_.

Parameters
----------
A : (M, N) array_like
    Matrix to be mapped.
B : (M, N) array_like
    Target matrix.
check_finite : bool, optional
    Whether to check that the input matrices contain only finite numbers.
    Disabling may give a performance gain, but may result in problems
    (crashes, non-termination) if the inputs do contain infinities or NaNs.

Returns
-------
R : (N, N) ndarray
    The matrix solution of the orthogonal Procrustes problem.
    Minimizes the Frobenius norm of ``(A @ R) - B``, subject to
    ``R.conj().T @ R = I``.
scale : float
    Sum of the singular values of ``A.conj().T @ B``.

Raises
------
ValueError
    If the input array shapes don't match or if check_finite is True and
    the arrays contain Inf or NaN.

Notes
-----
Note that unlike higher level Procrustes analyses of spatial data, this
function only uses orthogonal transformations like rotations and
reflections, and it does not use scaling or translation.

References
----------
.. [1] Peter H. Schonemann, "A generalized solution of the orthogonal
       Procrustes problem", Psychometrica -- Vol. 31, No. 1, March, 1966.
       :doi:`10.1007/BF02289451`

Examples
--------
>>> import numpy as np
>>> from scipy.linalg import orthogonal_procrustes
>>> A = np.array([[ 2,  0,  1], [-2,  0,  0]])

Flip the order of columns and check for the anti-diagonal mapping

>>> R, sca = orthogonal_procrustes(A, np.fliplr(A))
>>> R
array([[-5.34384992e-17,  0.00000000e+00,  1.00000000e+00],
       [ 0.00000000e+00,  1.00000000e+00,  0.00000000e+00],
       [ 1.00000000e+00,  0.00000000e+00, -7.85941422e-17]])
>>> sca
9.0

As an example of the unitary Procrustes problem, generate a
random complex matrix ``A``, a random unitary matrix ``Q``,
and their product ``B``.

>>> shape = (4, 4)
>>> rng = np.random.default_rng(589234981235)
>>> A = rng.random(shape) + rng.random(shape)*1j
>>> Q = rng.random(shape) + rng.random(shape)*1j
>>> Q, _ = np.linalg.qr(Q)
>>> B = A @ Q

`orthogonal_procrustes` recovers the unitary matrix ``Q``
from ``A`` and ``B``.

>>> R, _ = orthogonal_procrustes(A, B)
>>> np.allclose(R, Q)
True

T)ÚxpÚcheck_finiteÚsubokz$expected ndim to be 2, but observed zthe shapes of A and B differ (z vs Ú))r   r   ÚndimÚ
ValueErrorÚshaper   r   ÚTÚconjÚlinalgÚsum)	ÚAÚBr   r   ÚuÚwÚvtÚRÚscales	   &&&      Úi/Volumes/fast/ai/experiments/ui-tars-smoke/.venv/lib/python3.14/site-packages/scipy/linalg/_procrustes.pyr   r      sø   € ôl 
˜Ó	€Bä�¨¸DÔA€AÜ�¨¸DÔA€Aà‡v�v�„{ÜÐ?ÀÇÁ¸xÐHÓIÐIØ‡w�w�!—'‘'ÔÜÐ9¸!¿'¹'¸À$ÀqÇwÁwÀiÈqÐQÓRÐRô
 �‡|‚|Ü˜Ÿ™˜bŸg™g a›jÕ(×+Ñ+Ó,‰ˆ‰bà—9‘9—=‘= !§#¡#¨¯©°«
Õ"2×!5Ñ!5Ó6‰ˆˆbØ	�€AØ�F‰F�1‹I€EØˆ8€Oó    N)z
dask.arrayz+full_matrices=True is not supported by dask)r   é   )r   r    )T)Ú__doc__Úscipy._lib._utilr   Ú_decomp_svdr   Úscipy._lib._array_apir   r   r   r   Ú__all__r   © r   r   Ú<module>r'      sW   ðñõ
 /Ý ß VÓ Vð #Ð
#€ñ ØØPÐQôñ �8˜XÓ&ódó 'ó	ò
dr   