how can i normalize a plot
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hussain Ali
am 30 Mai 2020
Beantwortet: Ameer Hamza
am 30 Mai 2020
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
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 30 Mai 2020
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!