C++で科学的表記法ではなく、完全な倍精度浮動小数点数を表示する方法
std::coutを使用する方法:#include <iostream> #include <iomanip> int main() { double number = 123456789.123456789; std::cout << std::fixed << std::setprecision(15) << number << std::endl; return 0; }>>More
std::coutを使用する方法:#include <iostream> #include <iomanip> int main() { double number = 123456789.123456789; std::cout << std::fixed << std::setprecision(15) << number << std::endl; return 0; }>>More
整数表記を使用する方法:import matplotlib.pyplot as plt plt.rcParams['axes.formatter.use_mathtext'] = True plt.rcParams['axes.formatter.limits'] = (-3, 3) # 指定の範囲内の整数は数値として表示される # グラフの作成 x = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1, 1e1, 1e2, 1e3, 1e4, 1e5] y = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1, 1, 1e1, 1e2, 1e3, 1e4, 1e5>>More