photo

Zhuoran Han


Last seen: 1년 초과 전 2021년부터 활동

Followers: 0   Following: 0

통계학

  • Thankful Level 1
  • First Answer
  • Revival Level 1
  • First Review

배지 보기

Feeds

보기 기준

질문


Why these two similar operations (a sparse matrix w/o transpose times a vector) take different time to finish?
n = 1e5; a = sprand(n,n,5/n); v = rand(n,1); tic; for i = 1:1e3, b = a*v; end; toc tic; for i = 1:1e3, c = a'*v; end; toc I...

대략 2년 전 | 답변 수: 2 | 0

2

답변

답변 있음
deleting row and column from very large Sparse matrix efficiently
This is an easy way to deal with boundary conditions in stiffness matrices, have you tried permutation? Suppose your original m...

3년 초과 전 | 0