How to debug Error in returning value?
조회 수: 3 (최근 30일)
이전 댓글 표시
Could you please help ASAP? In the program attached below, I am getting the following error when I try to return the value of variable heart_rate calculated from pan_tompkin function to an array Heart_Rate
Error: File: pan_tompkin4.m Line: 135 Column: 15 Unbalanced or unexpected parenthesis or bracket.
Please help. Its urgent!!
댓글 수: 0
답변 (1개)
Guillaume
2016년 4월 25일
The error is very clear:
Heart_Rate[:,K]
is not valid syntax. Possibly you meant
Heart_Rate(:,K)=heart_rate
Note that saying that something is urgent makes it less likely that people will help you. We're doing this on a voluntary basis, it's certainly not urgent for us.
참고 항목
카테고리
Help Center 및 File Exchange에서 Downloads에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!