GNU 八度图

发布于 2025-01-09 02:14:04 字数 76 浏览 0 评论 0原文

我在 GNU Octave 上绘制了一个关于振动的简单速度与时间图,我想知道时间为 1 和 10 秒时的确切值。我对此不太确定,请帮助我。

I have plotted a simple velocity against time graph about vibration on GNU Octave and I would like to know the exact values when the time is 1 and 10s. I'm not very sure on this, please help me on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↙温凉少女 2025-01-16 02:14:04

只要您的时间数组 t 包含这些精确值,并假设您的速度数组为 v,您就可以使用

v(find(sum(t==[ 1 10].')))

并根据需要将尽可能多的值放入括号内的向量中。

如果 t 没有这些精确值,例如 t = [0 0.9 10.1],请查看 unique 函数的智能使用,网址:此页面

https://www.mathworks.com/matlabcentral/answers/375710-find-nearest-value-to-specific-number

As long as your time array t contains those exact values, and assuming your velocity array is v, you could use

v(find(sum(t==[1 10].')))

and put as many values into that bracketed vector as you need.

If t doesn't have those exact values, like t = [0 0.9 10.1], check out the intelligent use of the unique function at this page

https://www.mathworks.com/matlabcentral/answers/375710-find-nearest-value-to-specific-number

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文