rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
dom_dec_get_inner_product_matrices.m
Go to the documentation of this file.
1 function K = ...
3 % function K =
4 % dom_dec_get_inner_product_matrizes(detailed_data)
5 %
6 % h1 inner product on each domain.
7 % Return values:
8 % K: cell of inner product matrizes on subdomains
9 % G: matrix of inner product on the interface with respect to
10 % discrete functions on the dirichlet_side
11 
12 % I.Maier 19.07.2011
13 
14 K = cell(1,2);
15 for i = 1:2
16  K{i} = detailed_data.df_infos{i}.h10_inner_product_matrix + ...
17  detailed_data.df_infos{i}.l2_inner_product_matrix;
18 end;