đ Decision Matrices
Every choice is a decision matrix
Decision Matrices are the best way to make decisions. Which house to buy? Which classes to take? Which college to attend? All of these choices can be analyzed using decision matrices. In Robotics, decision matrices are primarily used to select the best design from multiple candidates.
A decision matrix has two lists:
A list of possible designs along the top row
A list of criteria to evaluate the designs along the left column
Each design is given a score from 1-5 for each criteria. Then, the weighted total is calculated; it's the sum of each criteria score multiplied by its weight.
Maneuverability
Weight: 3
4
5
2
Robustness
Weight: 2
4
3
2
Simplicity
Weight: 1
5
1
3
Weighted totals:
25
22
13
For example, here's how we calculated the weighted total for the 360 RPM Tank Drive in the above matrix:
Maneuverability: 3 * 4 = 12
Robustness: 2 * 4 = 8
Simplicity: 1 * 5 = 5
Weighted total: 12 + 8 + 5 = 25
The other weighted totals are calculated using the same method; the design with the highest weighted total is the best one.
Last updated
Was this helpful?