How can I Integrate on an array with respect to another array
51 ビュー (過去 30 日間)
古いコメントを表示
I want to integrate an array which is, acceleration, with respect to another array, which is time to get velocity, then integrate the velocity array with respect to time again to position. Does anyone know how I can do this? Any help will be appreciated thanks.
0 件のコメント
採用された回答
Steven Lord
2024 年 3 月 26 日
5 件のコメント
Steven Lord
2024 年 3 月 26 日
When I say "data sets" and "functions" I mean variables and function handles.
Integrating data:
x = 1:10;
y = x.^2;
integrateDataSet1 = trapz(x, y)
integrateDataSet2 = cumtrapz(x, y)
Integrating functions:
f = @(x) x.^2;
integrateFunction = integral(f, 1, 10)
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!