help-octave
[Top][All Lists]
Advanced

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

scatteredInterpolant


From: Michael Rembe, RC
Subject: scatteredInterpolant
Date: Thu, 21 Jan 2016 13:50:38 +0100

 

Hi,

 

in the past I used MATLAB with the command scatteredInterpolant to interpolate concentrations from one point cloud (x,y,z,c) to another point cloud (x1,y1,z1,->c1).

 

Now I’m using OCTAVE and it seemes, that there insn’t the function scatteredInterpolant. Is there any work around?

 

Thanks! best regards, Michael

 

**** MATLAB Code **************

%% import der 3D interpolierten Konzentrationen (Rockworks)

lhkw = load('LHKW_mVC_Outline.txt', '-ascii');

%lhkw(i,1) = x

%lhkw(i,2) = y

%lhkw(i,3) = z

%lhkw(i,4) = c

%% import Feflow Gitter (ausgabe aller Knoten als ASC-Tabelle)

feflow=load('feflow-Sz7-rev11_2.dat', '-ascii');

%feflow(i,1) = ID

%feflow(i,2) = X

%feflow(i,3) = Y

%feflow(i,4) = Z

%feflow(i,5) = NODE

%feflow(i,6) = SLIZE

%feflow(i,7) = WERT

%% Interpolation scatteredInterpolant

F=scatteredInterpolant(lhkw(:,1),lhkw(:,2),lhkw(:,3),lhkw(:,4),'linear','none');

feflow(:,7)=F(feflow(:,2),feflow(:,3),feflow(:,4));

**********************************

 

 

Mit freundlichen Grüßen

 

Michael Rembe

 

Rembe Consulting

Partnerschaftsgesellschaft für Geologie, Geoströmungstechnik,
Umweltplanung und numerische Simulation mbB

 

Friesenstraße 5

D-99734 Nordhausen

 

Partnerschaftsregister: Amtsgericht Jena PR 500094

Tel: +49-3631-4659075 | Fax: +49-3631-4659077 | Handy: +49-175-8307230

 

 


reply via email to

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