|
|
|
|
|
by OtterCoder
2626 days ago
|
|
I've translated several mathematical papers into code, and I must strongly disagree. The very first thing I do is translate glyphs into names relevant to the domain I'm applying the math to. It makes the rest of the process immensely easier. |
|
yk = C * xk + D * uk
is a lot clearer than
position_at_time_k = output_matrix * state_at_time_k + feedthrough_matrix * input_at_time_k.
The first is an idiom. The second is not.