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!