NO.
CONT.ON 41
PAGE NO.40
Copyright (C) 2020 Dynabook Inc., All Rights Reserved.
As you see this figure, the vertical lines and horizontal lines are drawn with equal intervals.
Additionally, the vertical and horizontal intervals are identical. It means that every grid made by two pair of the adjacent vertical and
horizontal lines is a square.
The interval’s value or the grid side’s length, which is referred as “Z” in this section 4-10, is calculated as follows.
“Z” is calculated based on the Greatest Common Measure (GCM) of the Full screen’s width and height.
Suppose that X = Full screen’s width, Y = Full screen’s height and “z" is the GCM of X and Y.
Hence,
z = GCM(X, Y); // z is calculated by Euclidean algorithm for GCM.
Usually, as “z” is a large integer value, it will be adjusted by the following logic to get a factor of “z” that is approximately equal to
X/40. The factor will be defined as “Z”.
z = GCM(X, Y); // X = Full screen’s width, Y = Full screen’s height.
for (d = 2; d<= z; d++)
{
if (z % d == 0)
{ // “z” is dividable by “d”
z = z / d;
if (X<= 1000) {if (z <= 25)break;}
else if (X<= 2000) {if (z <= 50)break; }
else if (X<= 3000) {if (z <= 75)break; }
else if (X<= 4000) {if (z <= 100)break;}
else if (X<= 5000) {if (z <= 125)break;}
else if (X<= 6000) {if (z <= 150)break; }
else if (X<= 7000) {if (z <= 175)break;}
else {if (z <= 200)break;}
d = 1; // to find the next factor of “z
}
}
Z = z; // “Z” will be the interval for both of the vertical and horizontal lines
// In case that z=GCM(X, Y) is a prime number, Z = GCM(X, Y), too.
# Note for this logic
The logic to define “Z” above does not seem to be very good because “z” is always divided by the smallest factor.
Although the logic can be acceptable for a while as long as there is no problem with the target PCs for this time, it is better to
modify the logic sometime in future as follows for example:
First, factorize “z” into prime factors:
Содержание SATELLITE C50-H
Страница 1: ...Chapter 1 Hardware Overview...
Страница 17: ...1 Chapter 2 Troubleshooting...
Страница 95: ...NO CONT ON 48 PAGE NO 47 Copyright C 2020 Dynabook Inc All Rights Reserved 5 1 2Htmllogfilesample...
Страница 96: ...NO CONT ON 49 PAGE NO 48 Copyright C 2020 Dynabook Inc All Rights Reserved...
Страница 99: ...NO CONT ON F PAGE NO 51 Copyright C 2020 Dynabook Inc All Rights Reserved 5 2 5YangPass_15_JP...
Страница 100: ...IP3 YangPass Maintenance Tool Product Specification PQS20200500302 REV00 PQS20200500305 REV01 Dynabook Dynabook Inc...
Страница 116: ...Chapter 4 Replacement Procedures 4...
Страница 117: ......
Страница 127: ......
Страница 140: ......
Страница 143: ...4 8 4 8 System Board 4 Replacement Procedures 4 21 Satellite C50 E Maintenance Manual Figure 4 21 Removing System Board...
Страница 144: ......
Страница 152: ......
Страница 156: ......