help-octave
[Top][All Lists]
Advanced

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

Re: Octave and Delaunay-Triangulation


From: Rafael Laboissiere
Subject: Re: Octave and Delaunay-Triangulation
Date: Tue, 14 Feb 2006 17:49:56 +0100
User-agent: Mutt/1.5.9i

* Micha <address@hidden> [2006-02-14 09:39]:

> >> x=[0.8 1 2 3 4.5 2 2.3 3 4.5 1.7 2.5];
> >> y=[5 3.5 2 1 0.8 5 3.5 2.3 2 4 2.3];
> >> tri = delauany(x,y)
> 
> 
> The reuslt ist an error like:
> 
> >> tri = delauany(x,y)
> error: `delauany' undefined near line 19 column 7
> error: evaluating assignment expression near line 19, column 5
> 
> How can I fix this error?
> 
> Sorry, for my bad english!

Your English is fine but watch your spelling.  Use "delaunay" instead of
"delauany":

>  tri = delaunay (x, y)
tri =

   4   9   5
  10   6   1
   2  10   1
   7   9   6
   7  10   6
   7   2   3
   7   2  10
   8   7   9
   8   4   9
  11   4   3
  11   8   4
  11   7   3
  11   8   7
                                  
(BTW, "reuslt" is spelled "result".  Aren't you typing too fast?)

-- 
Rafael



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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