3 % Computation of the lengths of edges in the mesh
7 % be: Connectivity array for boundary edges, `2\times\nbe` array.<br/>
8 % `\be(\il,l)` is the storage index of the
9 % `\il`-th vertex of the `l`-th edge in the array `\q` of vertices coordinates, `\il\in\{1,2\}` and
10 % `l\in{\ENS{1}{\nbe}}`.
11 % q: Array of vertices coordinates, `2\times\nq` array. <br/>
12 % `{\q}(\il,j)` is the
13 % `\il`-th coordinate of the `j`-th vertex, `\il\in\{1,2\}` and
18 % lbe: Array of edges lengths, `1\times\nbe` array. `lbe(j)` is the length of the `j`-th edge.
21 lbe=sqrt(sum((q(:,be(1,:)) - q(:,be(2,:))).^2,1));