We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
Sometimes, when writing large equations, the rule of adding spacing to all binary operators can lead to a very verbose text. Compare, for example:
aux_U += P[n + 1, m + 1] * (C[n + 1, m + 1] * cos_mλ + S[n + 1, m + 1] * sin_mλ) aux_U += P[n+1, m+1] * (C[n+1, m+1]*cos_mλ + S[n+1, m+1]*sin_mλ)
IMHO the latter is much more readable and understandable because the spacing is used to separate the factors.
The text was updated successfully, but these errors were encountered:
I would say I find the former easier to read. It's definitely worth calling out this style guide provides guidelines and not rules.
Sorry, something went wrong.
No branches or pull requests
Hi!
Sometimes, when writing large equations, the rule of adding spacing to all binary operators can lead to a very verbose text. Compare, for example:
IMHO the latter is much more readable and understandable because the spacing is used to separate the factors.
The text was updated successfully, but these errors were encountered: