comparison +multiblock/Grid.m @ 1071:92cb03e64ca4 feature/grids/LaplaceSquared

Merge with default
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 20 Sep 2018 12:05:20 +0200
parents a55d3c1e1f83
children 67228a10dfad
comparison
equal deleted inserted replaced
1070:f6b3af6febf3 1071:92cb03e64ca4
75 nBlocks = length(obj.grids); 75 nBlocks = length(obj.grids);
76 76
77 % Collect number of points in each block 77 % Collect number of points in each block
78 N = zeros(1,nBlocks); 78 N = zeros(1,nBlocks);
79 for i = 1:nBlocks 79 for i = 1:nBlocks
80 N(i) = obj.grids{i}.N(); 80 N(i) = obj.grids{i}.N()*nComponents;
81 end 81 end
82 82
83 gfs = blockmatrix.fromMatrix(gf, {N,1}); 83 gfs = blockmatrix.fromMatrix(gf, {N,1});
84 end 84 end
85 85