How to add a submatrix to a sparse matrix in parfor efficiently?

2 views (last 30 days)
Hi,
I currently have some speed issues with a parfor loop. In the loop I calculate submatrices, which added up are the global Matrix. The code from the profiler (changed the parfor to a for loop) is below.
The submatrices are size 6x6 and consist of 4 3x3 matrices. Compared to the other computations adding these submatrices to the global matrix is extremely slow. Has andybody an idea how to speed this up?
Thank you!
0.08 366600 49 k_l_e = auge * (f/L0(i)) + k_u;
50
2.24 366600 51 k = sparse(dof,dof);
10.37 366600 52 k_l(elementDof,elementDof) = [k_l_e -k_l_e; -k_l_e k_l_e];
53
28.70 366600 54 K = K + k_l; end

Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!