pub fn copy_transpose_scale_into<T>(
dest: &mut StridedViewMut<'_, T>,
src: &StridedView<'_, T>,
scale: T,
) -> Result<()>where
T: Copy + ElementOpApply + Mul<Output = T> + Zero + One + PartialEq + MaybeSendSync + 'static,Expand description
Copy with transpose and scaling: dest[j,i] = scale * src[i,j].