Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -11143,9 +11143,9 @@

// \ref{linalg.algs.blas1.iamax}, index of maximum absolute value of vector elements
template<@\exposconcept{in-vector}@ InVec>
typename InVec::extents_type vector_idx_abs_max(InVec v);
typename InVec::size_type vector_idx_abs_max(InVec v);
template<class ExecutionPolicy, @\exposconcept{in-vector}@ InVec>
typename InVec::extents_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v);
typename InVec::size_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v);

// \ref{linalg.algs.blas1.matfrobnorm}, Frobenius norm of a matrix
template<@\exposconcept{in-matrix}@ InMat, @\exposconcept{scalar}@ Scalar>
Expand Down Expand Up @@ -13980,9 +13980,9 @@
\indexlibraryglobal{vector_idx_abs_max}%
\begin{itemdecl}
template<@\exposconcept{in-vector}@ InVec>
typename InVec::extents_type vector_idx_abs_max(InVec v);
typename InVec::size_type vector_idx_abs_max(InVec v);
template<class ExecutionPolicy, @\exposconcept{in-vector}@ InVec>
typename InVec::extents_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v);
typename InVec::size_type vector_idx_abs_max(ExecutionPolicy&& exec, InVec v);
\end{itemdecl}

\begin{itemdescr}
Expand Down
Loading