2021-03-20

c++

输入x,求sinx。要求误差 e < 1.0 ∗ 1 0 − 9 e<1.0*10^{-9} e<1.0109

计算式: s i n x = x − x 3 3 ! + x 5 5 ! − x 7 7 ! + . . . . . . sinx=x-\frac{x^{3}}{3!}+\frac{x^{5}}{5!}-\frac{x^{7}}{7!}+...... sinx=x3!x3+5!x57!x7+......

(注:这道题对于我这个新手来说,其实还是蛮有意思的,错了很多次,终于得出了自己认为还算正确的答案,借此机会分享一下。如果有错误,也希望可以有大佬指正。)
do…while循环

#include<iostream>
#include<cmath>
using namespace std;
int main(){
double x,t,t0;
int sign,n;//sign为改变符号的变量
sign = 1;n = 1;
cout<<"x=";
cin>>x;
t0 = 0;//t0初始值
t=x;//n=1时
do{
t0 += t;
sign = -sign;
n +=2;
t = sign * fabs(t) * x * x / (n * (n - 1));
  } while(fabs(t0-t)>=1e-9);
  cout<<"sinx="<<t0<<endl;
  system("pause");  
}

以及for循环(感觉自己弄的这个几乎没有什么改动)

在这里插入图片描述

#include<iostream>
#include<cmath>
using namespace std;
int main() {
	double x, t, t0;
	int n ,sign;
	n = 1; sign = 1;
	cout<<"x=";
	cin >> x;
	t = x;//n=1时
	t0 = 0;//t0初始值
	for (; fabs(t0 - t) >= 1e-9;)
	{
		t0 += t;
		sign = -sign;
		n += 2;
		t = sign * fabs(t) * x * x / (n * (n - 1));
	}    	
	cout << "sinx=" << t0 << endl;
	system("pause");
}
2021-03-26 20:54:33,596 - Model - INFO - Epoch 1 (1/200): 2021-03-26 20:57:40,380 - Model - INFO - Train Instance Accuracy: 0.571037 2021-03-26 20:58:16,623 - Model - INFO - Test Instance Accuracy: 0.718528, Class Accuracy: 0.627357 2021-03-26 20:58:16,623 - Model - INFO - Best Instance Accuracy: 0.718528, Class Accuracy: 0.627357 2021-03-26 20:58:16,623 - Model - INFO - Save model... 2021-03-26 20:58:16,623 - Model - INFO - Saving at log/classification/pointnet2_msg_normals/checkpoints/best_model.pth 2021-03-26 20:58:16,698 - Model - INFO - Epoch 2 (2/200): 2021-03-26 21:01:26,685 - Model - INFO - Train Instance Accuracy: 0.727947 2021-03-26 21:02:03,642 - Model - INFO - Test Instance Accuracy: 0.790858, Class Accuracy: 0.702316 2021-03-26 21:02:03,642 - Model - INFO - Best Instance Accuracy: 0.790858, Class Accuracy: 0.702316 2021-03-26 21:02:03,642 - Model - INFO - Save model... 2021-03-26 21:02:03,643 - Model - INFO - Saving at log/classification/pointnet2_msg_normals/checkpoints/best_model.pth 2021-03-26 21:02:03,746 - Model - INFO - Epoch 3 (3/200): 2021-03-26 21:05:15,349 - Model - INFO - Train Instance Accuracy: 0.781606 2021-03-26 21:05:51,538 - Model - INFO - Test Instance Accuracy: 0.803641, Class Accuracy: 0.738575 2021-03-26 21:05:51,538 - Model - INFO - Best Instance Accuracy: 0.803641, Class Accuracy: 0.738575 2021-03-26 21:05:51,539 - Model - INFO - Save model... 2021-03-26 21:05:51,539 - Model - INFO - Saving at log/classification/pointnet2_msg_normals/checkpoints/best_model.pth 我有类似于这样的一段txt文件,请你帮我写一段代码来可视化这些训练结果
02-06
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值