Changeset 23168
- Timestamp:
- 08/24/18 08:37:36 (7 years ago)
- Location:
- issm/trunk-jpl/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/modules/InterpFromMeshToMesh2d.m
r20875 r23168 6 6 % or data_interp=InterpFromMeshToMesh2d(index,x,y,data,x_interp,y_interp,OPTIONS); 7 7 % 8 % index : index of the mesh where data is defined9 % x,y :coordinates of the nodes where data is defined10 % data :matrix holding the data to be interpolated onto the mesh (one column per field)11 % x_interp,y_interp :coordinates of the points onto which we interpolate12 % data_interp :vector of mesh interpolated data8 % index : index of the mesh where data is defined (e.g. md.mesh.elements) 9 % x,y : coordinates of the nodes where data is defined 10 % data : matrix holding the data to be interpolated onto the mesh (one column per field) 11 % x_interp,y_interp : coordinates of the points onto which we interpolate 12 % data_interp : vector of mesh interpolated data 13 13 % Available options: 14 14 % default: default value if point is outsite of triangulation (instead of linear interpolation) -
issm/trunk-jpl/src/m/modules/InterpFromMeshToMesh2d.py
r20909 r23168 9 9 or data_interp=InterpFromMeshToMesh2d(index,x,y,data,x_interp,y_interp,OPTIONS); 10 10 11 index: index of the mesh where data is defined 11 index: index of the mesh where data is defined (e.g. md.mesh.elements) 12 12 x,y: coordinates of the nodes where data is defined 13 13 data: matrix holding the data to be interpolated onto the mesh (one column per field) -
issm/trunk-jpl/src/wrappers/InterpFromMeshToMesh2d/InterpFromMeshToMesh2d.cpp
r20877 r23168 14 14 _printf0_(" or data_interp=InterpFromMeshToMesh2d(index,x,y,data,x_interp,y_interp,OPTIONS);\n"); 15 15 _printf0_("\n"); 16 _printf0_(" index : index of the mesh where data is defined \n");16 _printf0_(" index : index of the mesh where data is defined (e.g. md.mesh.elements)\n"); 17 17 _printf0_(" x,y : coordinates of the nodes where data is defined\n"); 18 18 _printf0_(" data : matrix holding the data to be interpolated onto the mesh. (one column per field)\n");
Note:
See TracChangeset
for help on using the changeset viewer.