I'm having trouble reporting the actual measurements.
I take a bunch of points and then i extract the highest point value works in other programs i created but i dunno maybe i'm having a brain fart.
when i look through the point values its not grabbing the highest value that i am looking to extract/report.
the highest Z value is 1.7928 but it is pulling the combined/actual average of all the points? 1.7898
You are actually taking the Z-value from the
SCN, which is 1.7898.
You might need to create an array from the points in the SCN and check that for the max Z-value. I am not sure that referencing the SCN directly will work;
ASSIGN/THREAD=(MAX(SCN1.HIT[1..SCN1.NUMHITS])*2)
If that doesn't work, you'd need to create an array with all your points in it and fetch the max Z from the array.
You are actually taking the Z-value from the
SCN, which is 1.7898.
You might need to create an array from the points in the SCN and check that for the max Z-value. I am not sure that referencing the SCN directly will work;
ASSIGN/THREAD=(MAX(SCN1.HIT[1..SCN1.NUMHITS])*2)
If that doesn't work, you'd need to create an array with all your points in it and fetch the max Z from the array.