PC-DMIS :
ASSIGN/T_VAL=DOT(PT1.XYZ-PT1.TXYZ,PT1.TIJK)
or
ASSIGN/T_VAL=DOT(SCN1.HIT[1..SCN1.NUMHITS].XYZ-SCN1.HIT[1..SCN1.NUMHITS].TXYZ,SCN1.HIT[1..SCN1.NUMHITS].TIJK)
In excel :
type this formula in a vba script, then look in P5 to get the right translation
in D5:F5, measured coordinates XYZ
in H5:J5, theo coordinates TXYZ
in L5:N5 : theo TIJK
Sub T_VAL()
Range("P5").Select
ActiveCell.Formula = _
"=SUMPRODUCT(D5:F5-H5:J5,L5:N5)"
End Sub
PC-DMIS :
ASSIGN/T_VAL=DOT(PT1.XYZ-PT1.TXYZ,PT1.TIJK)
or
ASSIGN/T_VAL=DOT(SCN1.HIT[1..SCN1.NUMHITS].XYZ-SCN1.HIT[1..SCN1.NUMHITS].TXYZ,SCN1.HIT[1..SCN1.NUMHITS].TIJK)
In excel :
type this formula in a vba script, then look in P5 to get the right translation
in D5:F5, measured coordinates XYZ
in H5:J5, theo coordinates TXYZ
in L5:N5 : theo TIJK
Sub T_VAL()
Range("P5").Select
ActiveCell.Formula = _
"=SUMPRODUCT(D5:F5-H5:J5,L5:N5)"
End Sub