Issue with signal processing onramp course connection
4 次查看(过去 30 天)
显示 更早的评论
I get the following screen after submitting Task2 in 'Align Signal' section of the 'Signal Processing Onramp' self paced course. I tried many times to resubmit, reopen internet browser, restart the PC. Also, my internet connection is fully working as I can browse in any other internet website.
Any help would be much appreciated. Thank you
1 个评论
回答(2 个)
Daniel
2022-9-28
I was stuck with the same issue. I swapped from my less powerful laptop to my personal pc which is significanly better and I managed to get it to comeplete without crashing. If you can do this, it would be a fix.
0 个评论
Bala Tripura Bodapati
2022-9-29
Hi Roberto
It is my understanding that a 'Timeout error' is encountered wile you are submitting Task2 in 'Align Signal' section of the 'Signal Processing Onramp' self paced course.
In order to resolve the issue, try the following troubleshooting steps:
- Refresh browser cache. For instructions for refreshing browser cache for different Web Browsers, please refer to the following MATLAB Answers post: Refresh browser cache
- Update the browser. Check that your system settings meet the browser requirements of the self-paced training. For the browser requirements for online courses, please refer to the Browser Requirements page: Browser Requirements
- Avoid large output and write efficient code. Note that the assessment times out after a certain amount of time. If an approach takes more time than the assessment time, then an error would be generated. In this particular case, as a workaround, try the following lines of code which will increase the speed of the “stem” command:
lags = downsample(lags,10);
c = downsample(c,10);
stem(lags,c)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!