I have a work need to find the missing value based on its neighbouring value.
The value can be found below with its x,y coordinates.
The goal is to calculate the Z_value based on its neighbouring value fitting, such as contour map method.
THanks
Go to Solution
The contour plot platform allows you to create a new data table where the xy matrix can be interpolated to whatever precision desired.
From the red triangle, select
Save=>Generated Grid
View solution in original post
Here is the example taken directly from the Scripting Index
Names Default To Here( 1 ); dt = Open( "$SAMPLE_DATA/Little Pond.jmp" ); obj = dt << Contour Plot( X( :X, :Y ), Y( :Z ) ); obj << Generate Grid( 11, 11 );
This works, thanks.
By any chance, do you happen to know the JSL for the grid generation?I am trying to use table copy script, but it doesn't work.
For example,to generate a 21 horizontal grid, and a 32 vertical grid.
This is great, thanks