octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #35178] griddata: cubic interpolation not yet


From: Hartmut
Subject: [Octave-bug-tracker] [bug #35178] griddata: cubic interpolation not yet implemented
Date: Sat, 19 Nov 2016 19:58:25 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:50.0) Gecko/20100101 Firefox/50.0

Follow-up Comment #2, bug #35178 (project octave):

This bug is still present in Octave 4.2.0.

The function griddata.m claims to support the method "cubic" in its help text,
but trying to use it results in an error message: "error: griddata: cubic
interpolation not yet implemented".

A simple script to reproduce this:

xy = gallery('uniformdata',[100 2],0);
x = xy(:,1);
y = xy(:,2);
v = exp(-x.^2-y.^2);
[xq,yq] = meshgrid(-2:.5:2, -2:.5:2);
vq = griddata(x,y,v,xq,yq, "cubic");


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?35178>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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