How to copy the upper part (blue) and connect it with brown curve?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/795344/image.jpeg)
0 comentarios
Respuestas (1)
Image Analyst
el 9 de Nov. de 2021
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.
0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!