function instead of grid data without Interpolation

3 visualizzazioni (ultimi 30 giorni)
I want to make Matrix with 3 vector. but griddata make wrong result, does any one know the other function for making matrix?
  2 Commenti
madhan ravi
madhan ravi il 3 Feb 2019
Modificato: madhan ravi il 3 Feb 2019
Could you upload the code so that the pattern is observed and an alternative solution can be given?
Mah Mhata
Mah Mhata il 3 Feb 2019
clear all
close all
clc
x=[1,8,2,8];
y=[2,3,0,9];
z=[80,30,30,40];
[X,Y]=meshgrid(x,y)
Z=griddata(x,y,z,X,Y)
u=trapz(x,Z,2)
I=trapz(y,u)

Accedi per commentare.

Risposte (1)

KSSV
KSSV il 4 Feb 2019
x=[1,8,2,8];
y=[2,3,0,9];
z=[80,30,30,40];
[X,Y]=meshgrid(x,y) ;
F = scatteredInterpolant(x',y',z') ;
Z = F(X,Y) ;
u=trapz(x,Z,2)
I=trapz(y,u)
  4 Commenti
madhan ravi
madhan ravi il 4 Feb 2019
Modificato: madhan ravi il 4 Feb 2019
It was confusing because OP mentioned "function instead of grid data without Interpolation" so I thought there is some function which doesn't interpolate data similar to griddata() or scatteredInterpolant()?
Mah Mhata
Mah Mhata il 4 Feb 2019
Z =
80.0000 25.0771 70.0000 25.0771
91.7930 30.0000 74.2857 30.0000
40.5238 8.7696 30.0000 8.7696
129.8353 40.0000 112.3279 40.0000
It has interpolation too.It is not right answer for calculating the area under this curve.
what should I do?I think my data is in 3d model, please help me how I can calculate the area under the curve or surface

Accedi per commentare.

Categorie

Scopri di più su Interpolation in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by