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