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

조회 수: 4 (최근 30일)
Drew Eager
Drew Eager 2021년 7월 31일
답변: KSSV 2021년 7월 31일
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