I am doing following example of triangulation in octave from matlab:
P = [ 2.5 8.0
6.5 8.0
2.5 5.0
6.5 5.0
1.0 6.5
8.0 6.5];
T = [5 3 1;
3 2 1;
3 4 2;
4 6 2];
TR = triangulation(T,P)
edges(TR);
I am getting following error:
warning: the 'triangulation' function is not yet implemented in Octave
Please read <
https://www.octave.org/missing.html> to learn how you can
contribute missing functionality.
error: 'triangulation' undefined near line 1 column 11
Please help in resolving the issue
--