Lecture Notes, 5.21
Printed: | figure shows pivot in row 3 and column 2 |
Fixed: | pivot in row 2 and column 2 |
Lecture Notes, 6.14 and 6.15
Printed: | s sqrt(T) |
Fixed: | σ sqrt(T) |
Lecture Notes, 8.15
Printed: | 9C02 means store the contents of register A |
Fixed: | 9C02 means store the contents of register C |
Lecture Notes, 9.17
Printed: | A = store indirect, B = load indirect |
Fixed: | A = load indirect, B = store indirect |
Lecture Notes, 16.11
Printed: | |
Fixed: | indent while loop and add extra left curly brace |
Lecture Notes, 16.18
Printed: | public static int hash |
Fixed: | private int hash |
Lecture Notes, 17.9
Printed: | F: EBG |
Fixed: | F: EBGI |
Lecture Notes, 18.2
Printed: | 10000 |
Fixed: | 100000 |
Lecture Notes, 18.9, 18.14
Printed: | \\. |
Fixed: | \. |
Triangle Packet
Inconsistent page and section numbering. |
Triangle Packet, page 41
Printed: | W = 35.74 + 0.6125 T + (0.475 T - 35.75)V0.16 |
Fixed: | W = 35.74 + 0.6215 T + (0.4275 T - 35.75)V0.16 |
Triangle Packet, p. 41
Printed: | Use Math.asin |
Fixed: | Use Math.atan2 and no need to assume x is not zero |
Triangle Packet, p. 52
Printed: | for (i = 0, N = 1 |
Fixed: | for (int i = 0, N = 1 |
Triangle Packet, p. 68
Printed: | (x = y) is also a conditional expression |
Fixed: | (x = y) is an arithmetic expression if x and y are integers |
Triangle Packet, p. 68
Printed: | (x = y) always returns true |
Fixed: | (x = y) evaluates to y |
Triangle Packet, p. 69
Printed: | dsyfunctional |
Fixed: | dysfunctional |