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
line 46:val /= sqrt(height * width); line 73: g = std::abs(val) / sqrt(height * width); 我昨天在做的时候就觉得很奇怪,怎么会能用错误的式子给出正确解答,看到answer_32.cpp就明白了...这愣是把逆变换的中的g = std::abs(val) /(height * width);拆分成了在正逆变换中分别除以sqrt(height * width)的形式...😂
val /= sqrt(height * width);
g = std::abs(val) / sqrt(height * width);
g = std::abs(val) /(height * width);
sqrt(height * width)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
line 46:
val /= sqrt(height * width);
line 73:
g = std::abs(val) / sqrt(height * width);
我昨天在做的时候就觉得很奇怪,怎么会能用错误的式子给出正确解答,看到answer_32.cpp就明白了...这愣是把逆变换的中的
g = std::abs(val) /(height * width);
拆分成了在正逆变换中分别除以sqrt(height * width)
的形式...😂The text was updated successfully, but these errors were encountered: