How to plot a deviation (upper/lower limit)
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I have a plotted a signal (black line). Now i want to draw a 5 percent upper and lower limit (range deviation).. See my picture. How can i do this?
Thank you in advance.
Best Regards

0 commentaires
Réponses (1)
Torsten
le 27 Mai 2021
Modifié(e) : Torsten
le 27 Mai 2021
Include 1.05*signal and 0.95*signal in the same plot.
2 commentaires
Torsten
le 27 Mai 2021
If S_rand is the random signal 19894x2 matrix, you can sort out the points where this signal is not in the prescribed limits by
S_out = S_rand( S_rand(:,2) < 0.95*S(:,2) | S_rand(:,2) > 1.05*S(:,2) )
where S is the 19894x2 matrix of the original signal.
Voir également
Catégories
En savoir plus sur Spectral Estimation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
