代码拉取完成,页面将自动刷新
同步操作将从 lzc/matplotlib-cpp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#define _USE_MATH_DEFINES
#include <cmath>
#include "../matplotlibcpp.h"
#include <chrono>
namespace plt = matplotlibcpp;
void update_window(const double x, const double y, const double t,
std::vector<double> &xt, std::vector<double> &yt)
{
const double target_length = 300;
const double half_win = (target_length/(2.*sqrt(1.+t*t)));
xt[0] = x - half_win;
xt[1] = x + half_win;
yt[0] = y - half_win*t;
yt[1] = y + half_win*t;
}
int main()
{
size_t n = 1000;
std::vector<double> x, y;
const double w = 0.05;
const double a = n/2;
for (size_t i=0; i<n; i++) {
x.push_back(i);
y.push_back(a*sin(w*i));
}
std::vector<double> xt(2), yt(2);
plt::title("Tangent of a sine curve");
plt::xlim(x.front(), x.back());
plt::ylim(-a, a);
plt::axis("equal");
// Plot sin once and for all.
plt::named_plot("sin", x, y);
// Prepare plotting the tangent.
plt::Plot plot("tangent");
plt::legend();
for (size_t i=0; i<n; i++) {
if (i % 10 == 0) {
update_window(x[i], y[i], a*w*cos(w*x[i]), xt, yt);
// Just update data for this plot.
plot.update(xt, yt);
// Small pause so the viewer has a chance to enjoy the animation.
plt::pause(0.1);
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。