How to shift my data in Y direction ?

2 次查看(过去 30 天)
How I can shift the red coloerd data or the black coloerd data in the image below thus both are starting at same points in the y dierction so I will be able to compare the data?
Any suggestion? Please!!!
  2 个评论
Walter Roberson
Walter Roberson 2019-4-23
minred = min(red_data);
minblack = min(black_data);
base = min(minred, minblack);
plot(time, red_data - base, 'r', time, black_data - base, 'k')

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Geometric Transformation and Image Registration 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by