help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

'triangulation' function is not yet implemented in Octave


From: M. Jahanzeb Malik
Subject: 'triangulation' function is not yet implemented in Octave
Date: Mon, 2 Mar 2020 15:22:37 +0500

I am doing following example of triangulation in octave from matlab:
https://www.mathworks.com/help/matlab/ref/triangulation.html#d118e1203590

     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
--
Kind Regards

reply via email to

[Prev in Thread] Current Thread [Next in Thread]