How to stem positive part of wave?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
vu ngothanh
le 11 Déc 2015
Commenté : vu ngothanh
le 12 Déc 2015
Hi everyone,
I have a wave data, I need to show dispersion wave, so I need to "Stem" a "positive part" of the wave (look like the image below). Could you please to help me to solve it.
Thank you in advance.
0 commentaires
Réponse acceptée
Prasad Kalane
le 11 Déc 2015
Modifié(e) : Prasad Kalane
le 11 Déc 2015
Try using following code
if true
% code
endx1=rand(1,10);
x2=rand(1,10);
x=[x1 -x2];
subplot(121);stem(x);
title('+ve & -ve Data')
for i=1:length(x)
if sign(x(i))==-1
x(i)=0;
end
end
subplot(122);stem(x);
title('+ve Data')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Preprocessing 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!