필터 지우기
필터 지우기

What type of function Matlab has help to construct symmetric matrix?

조회 수: 2 (최근 30일)
Omar B.
Omar B. 2020년 1월 29일
답변: Omar B. 2020년 1월 30일
What type of built-in functions (such as function Toeplitz) that come with Matlab help us to construct a symmetric matrix (not random) ?
  댓글 수: 2
James Tursa
James Tursa 2020년 1월 30일
Any specific properties needed?
David Goodmanson
David Goodmanson 2020년 1월 30일
Hi Omar,
any matrix of your choosing can be made into a symmetric matrix of course with
A = (A+A.')/2

댓글을 달려면 로그인하십시오.

채택된 답변

Steven Lord
Steven Lord 2020년 1월 30일
Several of the matrices you can create using the gallery function are symmetric, and some have other interesting and/or useful properties.

추가 답변 (3개)

James Tursa
James Tursa 2020년 1월 30일
If no specific properties needed, then you could use
n = the desired size
M = rand(n);
M = M + M';
  댓글 수: 1
Omar B.
Omar B. 2020년 1월 30일
Thank you so much. I just want to learn more about the built - in function that can we use to create symmetric function.

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2020년 1월 30일
squareform() can convert a vector of values representing the upper triangle, into a full symmetric matrix.

Omar B.
Omar B. 2020년 1월 30일
Thank you so much . I really appreciate your help.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by