help-octave
[Top][All Lists]
Advanced

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

Delaunay Triangulation Problem


From: saleem mukhtar
Subject: Delaunay Triangulation Problem
Date: Mon, 15 Jan 2007 18:45:15 -0800 (PST)

Hello,

Just downloaded Octave for Windows version 2,1.73

          x = rand(1,10);
          y = rand(size(x));
          T = delaunay(x,y);
          X = [ x(T(:,1)); x(T(:,2)); x(T(:,3)); x(T(:,1)) ];
          Y = [ y(T(:,1)); y(T(:,2)); y(T(:,3)); y(T(:,1)) ];
          axis([0,1,0,1]);
          plot(X,Y,'b;;',x,y,'r*;;');

error: `delaunay' undefined near line 3 column 5
error: evaluating assignment expression near line 3, column 3

Any ideas on how I could fix this would be greatly appreciated. Thanks,

Saleem


 
____________________________________________________________________________________
Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
http://autos.yahoo.com/new_cars.html 



reply via email to

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