HOW SHOULD I REPEAT THE ECG WAVEFORM BY USING A "FOR "LOOP STATEMENT?
显示 更早的评论
i already have generated ecg waveform & want to repeat that by using a for loop statement.plz help me out.
回答(1 个)
Azzi Abdelmalek
2012-10-23
编辑:Azzi Abdelmalek
2012-10-23
You don't need a for loop
Y=rand(1,30) % Y your ecg signal
n=10 % n number of repetitions
Yr = repmat(Y,1,n)
类别
在 帮助中心 和 File Exchange 中查找有关 Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!