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!