集成到matlab中
我如何求解 ZV 的以下方程
ZV = integral_{0}^{ZD}(z.*A)dz
:
ZD = 40;
z = [1:2:12];%depth
A = [112,118,123,143,188,200];%area
How would I solve the following equation for ZV:
ZV = integral_{0}^{ZD}(z.*A)dz
where
ZD = 40;
z = [1:2:12];%depth
A = [112,118,123,143,188,200];%area
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道你的第一行代码是什么意思:(但是看看
quad
(http://www.mathworks.de/help/techdoc/ref/quad.html),特别是仔细看看列出的示例:)I don't know what you mean by your first code-line :( But look at
quad
(http://www.mathworks.de/help/techdoc/ref/quad.html), especially have a closer look at the listed examples :)