how can i normalize a plot
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hussain Ali
el 30 de Mayo de 2020
Respondida: Ameer Hamza
el 30 de Mayo de 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 comentarios
Respuesta aceptada
Ameer Hamza
el 30 de Mayo de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line 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!