photo

mike will


自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

Feeds

排序方式:

已回答
How to create a symmetric random matrix?
This is the solution: A = rand(4, 4) A_symmetric = tril(A) + triu(A', 1) Where A will be a square matrix, and tril(A) ret...

5 years 前 | 1