Distance     Last updated on 2010     3     30, a full moon day;

time     time   AND   1, 2, 3, 4, 5, 6, ... number  = distance; ACT2 and ACT3 stage parallel time calculation is in progress, also see: 2554;

1st to understand static 2-point distance, and then understand n-point distance; 2nd to understand non-static distance between hyperspace1 and hyperspace2, without weight; 3rd to understand non-static weighted distance among ACT2 stage FuzzySVMs in hyperplane1 AND hyperplane2;

Approx. 8 distances available to read, and a Myanmar's imaginary hyperdimensional hyperspace craft's horizontal ACT3 gray scale has been in 5 columns [still do not know the cause of WHY gray scale is not even to left and to right], but still calculating parallel time because natural time slows down in ACT3 stage ... ;

 

2-point distance to n-point distance:

Point P1 and point P2 lie on a line L  ;

If point P1 is called A, and point P2 is called B, and then mathematical distance notation can be symbolized/written as AB;

n numbers of points lie in Euclidean space in ACT1 stage was with n dimensions;

n numbers of points P1, P2, P3, P4, ... , Pn; and those n numbers of points must NOT lie in the same Euclidean space in ACT1 stage was with n - 1 dimensions;

WHERE in xy plane, in ACT1 stage, 1 is abscissa for P1 and 2 is ordinate for P1, 3 is abscissa for P2 and 4 is ordinate for P2. Since point P1 and P2 depend on XY coordinate' same data type, P1 and P2 can be represented as array in computers as P1[x, y], P2[x, y], aka 2 dimensional arrays. After understanding space, and then time WHEN concerns, in simulation, we human beings can only have 2D vision [also see: aspect ratio], therefore, incoming Z as time in 3 dimensional array ... ; However in M theory, 10 dimensional strings have been proposed [Also read Prof. Kaku's Parallel World, for ACT2 and ACT3 stage developments];

IFF AB characteristic is in USB bus testing, for example AB = 10 cm, CD = 14 cm, EF = 24 cm, ... [ testing a port's tolerance by tapping/splitting/sharing/... ] and then notice that USB bus's tolerate distance becomes constraint along with time; Almost all testing boards, bus extenders, modular devices, ... are based on, engineered by distance vs. time, some engineers may say "due to attenuation", some engineers may say "due to resistance", some engineers may say "due to interference", ... , [Time . Space . Action];

 

ACT3 Distance Calculation, for a Myanmar's imaginary hypercraft's parallel time
1st to understand numerical values in numerology; 2nd to understand syntax vs. semantics logic so that only 3 is essential; 3rd to understand homological 2 and 3 solves 4PP + JUN = 6;3*3 ACT3 vectors and their dimensions must be further developed, a new ACT3 dimension must be developed; For ACT3 simulation developers, develop 3*3 ACT3 vectors, therefore a Myanmar's imaginary hyperdimensional hyperspace crafts can be able to do displacement of number at parallel time. And then, ACT3 distance calculation to prove gray scales simulation scientifically;

 

ACT3 Heat Distance Simulation, for a Myanmar's imaginary hypercraft's parallel time

After understanding 4 Planets Prediction, and then JUN time, 1st to understand is 1 stick of light, and then sticks as strings must be thoroughly understood; In a Myanmar's imaginary hyperdimensional hyperspace craft, 44 sticks need 4 holes to engineer 1 gravity symbol, but heat in distance has not been tested yet, for example: heat in 24 mm natural time might be diff IFF ACT3 hypercraft went very very very far away from our universe ... ; Therefore, cold and dark room environmental simulation is a must to measure heat in distance, and then ... ; Also read: Oct., 2007 Volume XVII Number 3 LINEAR TECHNOLOGY; Fuzzy Gray Scale Simulation;

 

Damerau & Levenshtein distance, 1964:

An extension of Levenshtein distance; In addition to Levenshtein distance, additional recurrence has been computed, aka transposition, and calculated as:

{TRUE}

if ( i > 1 AND j > 1 AND string[ i ] = string [ j - 1 ] AND string[ i - 1 ] = string [ j ] ) then

2d_array [ i, j ] := is going to be assigned min (

2d_array [ i, j ],

2d_array [ i - 2, j - 2 ] + cost

)

Damerau & Levenshtein distance is aka edit distance. Can be used in natural language processing;Cannot be used in Metric tree;

/****/

Damerau & Levenshtein distance between string and string can be written as:

declare integer 2d_array [ 0 .. length_of_string, 0 .. length_of_string ] /*** 2D table */

declare integer i, j, cost /*** defined variable */

integer Damerau_Levenshtein_distance (character_data_type string