Thanks!
Well, it looks like it can only be done in a circular way.
There are many such files that need to be written to the JMP table.
Want to increase speed.
I wrote JSL
b = Load Text File( ……|| "abs.spr", blob() );
s = Length( b ) / 12;
ar = [];
ar = J( s, 5, . );
For( k = 1, k <= s, k++,
a = Blob Peek( b, (k - 1) * 12, 12 );
ar[k, 3] = Blob To Matrix( a, "int", 4, "little", 8 )[1, 1];
ar[k, 4] = Blob To Matrix( a, "int", 4, "little", 8 )[1, 2];
ar[k, 5] = Blob To Matrix( a, "float", 4, "little", 8 )[1, 3];
);
If it is able to implement segmentation
Does this code increase speed?