Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize Matrix Symmetry Orthogonalization in C++

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the relevant knowledge of "how to achieve matrix symmetry and orthogonalization in C++". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

1.python code

Import numpy as npimport pandas as pddf=pd.DataFrame () df ['fac_01'] = (34, 45, 65) df [' fac_02'] = (56, 25, 94) print (df) print Df)) # find the eigenvalues D, and Eigenvectors Uprint of matrices (DQuery U Sep='\ n') print ('\ n-diagonal matrix--') print (np.diag * (- 0.5)) print ('\ n-symmetric orthogonal matrix- -') S = np.dot (np.dot (U Np.diag (df * (- 0.5)), U.T) # find the transition matrix S = U * DEx * U'F_hat = np.dot (df, S) # find the symmetric orthogonal matrix print (F_hat)

2. The implementation of Eigen library of Clipper +.

# include "Eigen/Dense" using namespace Eigen;int main () {/ / initialize MatrixXf A (3,2); A (0meme0) = 34th A (0meme1) = 56; A (1meme 0) = 45ten A (1p1) = 25; A (2mem0) = 65ten A (2jin1) = 94; / / generate orthogonal matrix MatrixXf AEx = A.transpose () * A; int nRowSize = AEx.rows (); int nColSize = AEx.cols () / / find eigenvalue, eigenvector SelfAdjointEigenSolver eigensolver (AEx); MatrixXf D = eigensolver.eigenvalues (); MatrixXf U = eigensolver.eigenvectors (); std::cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report