How to Matching matrix size (add or take away a value)

4 次查看(过去 30 天)
Hi everyone,
I want to take the results from vx and then apply them to the find ax, but the matrix are different sizes so I am reciving an error. Is the a away to rectify this so i can use the reulting vx matric for the ax eqaution? I cannot figure out how to match the size.
Thanks
Here is the code I am working with.
% x values of particle 1
x = [2.1547 2.1104 2.0498 1.9743 1.8852 1.7843];
% t values of particle 1
t = [0.1346 0.2015 0.2682 0.3345 0.4006 0.4665];
% difference
dx = diff(x);
dt = diff(t);
% vx - velocity in x direction
vx = dx./dt;
% ax - acceleration in x direction
ax = vx./dt;

回答(1 个)

KSSV
KSSV 2021-7-31
There is no error... If you are finding the difference, have a look on gradient.

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by