how can i normalize a plot

9 ビュー (過去 30 日間)
Hussain Ali
Hussain Ali 2020 年 5 月 30 日
回答済み: Ameer Hamza 2020 年 5 月 30 日
figure 1 show the plot which i am getting.
figure 2 shows the actual (normalized) plot which i am trying to achieve.
please note that only y axis has been normalized and logarithmic scale on both axes has been used

採用された回答

Ameer Hamza
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 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by