inline void NormalUniformSpectrum ( DistMatrix<Complex<R>,U,V>& A, Int n, Complex<R> center=0, R radius=1 ) { #ifndef RELEASE CallStackEntry entry("NormalUniformSpectrum"); #endif A.ResizeTo( n, n ); MakeNormalUniformSpectrum( A, center, radius ); }
inline void NormalUniformSpectrum ( int n, DistMatrix<Complex<R>,U,V>& A, Complex<R> center, R radius ) { #ifndef RELEASE PushCallStack("NormalUniformSpectrum"); #endif A.ResizeTo( n, n ); MakeNormalUniformSpectrum( A, center, radius ); #ifndef RELEASE PopCallStack(); #endif }