Resacaling an array to align and plot beside another
2 次查看(过去 30 天)
显示 更早的评论
I have two arrays that when plotted should align. What is the best way to scale one of these arrays so the largest two maximums are inline? I am trying to show the maximums should all align, the height (intensity) is unimportant right now.
The arrays are both 1 X 600, however I have removed every second element of one of them to make them plot together.
2 个评论
Jan
2017-11-30
What kind of arrays do you have? Matrices, vectors, multi-dimensional cell arrays? How is "align" defined? What does "largest two maximum are inline" mean? Why did you remove every 2nd element?
回答(1 个)
Thorsten
2017-11-30
x = 1:600; A = rand(1, 600);
y = 1:2:600; B = rand(1, 300);
plot(x, A, y, B)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!