how can i normalize a plot
조회 수: 19 (최근 30일)
이전 댓글 표시
figure 1 show the plot which i am getting.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/306051/image.png)
figure 2 shows the actual (normalized) plot which i am trying to achieve.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/306055/image.jpeg)
please note that only y axis has been normalized and logarithmic scale on both axes has been used
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 5월 30일
divide by signals by maximum value of EtRe. Something like this
max_EtRe = max(Etre);
EtRe_ = EtRe/max_EtRe;
Etlm_ = Etlm/max_EtRe;
% plot EtRe_ and Etlm_
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!