How to copy the upper part (blue) and connect it with brown curve?

조회 수: 1 (최근 30일)
Nisar Ahmed
Nisar Ahmed 2021년 11월 9일
답변: Image Analyst 2021년 11월 9일
Hi,
I want to generate two graphs having upper portion same but different lower portion as in the figure. How I can shift/connect the upper blue part on the brown curve?

답변 (1개)

Image Analyst
Image Analyst 2021년 11월 9일
Your figure does not show "two graphs having upper portion same but different lower portion as in the figure". In fact they're different everywhere. The lower portion is actually more similar than the upper portion. Anyway to shift the brown signal up you do
brownMax = max(yBrown);
blueMax = max(yBlue);
% Now shift and put the shifted copy in a new variable.
yBrown2 = yBrown - brownMax + blueMax;
Then plot yBrown2.

카테고리

Help CenterFile Exchange에서 Graphics Object Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by