Hi all
Firstly, I hope everyone happy new year.
Now I have a really silly question but I still donno how to sovle it, that is if I want to change the default method in TriScatteredInterp to natural neighbor, how can I change it?
I tried on this, but it does not work.
F = TriScatteredInterp(x,y,z);
F.Method = 'natural';
Thanks.
|
|
0
|
|
|
|
Reply
|
Tiantian
|
1/4/2010 5:59:04 AM |
|
try
F = TriScatteredInterp(x,y,z,'natural');
|
|
0
|
|
|
|
Reply
|
Chris
|
2/8/2010 7:47:38 PM
|
|