issue with signal processing onramp course code submission

6 次查看(过去 30 天)
In signalprocessing #chapter=6&lesson=1&section=1 , when I run the task 4, I am having this issue, although I have verified with the given solution everytime I submit this task getting this error " is data on x-axis correct" ,I think its a technical issue kindly help me resolve this issue
  2 个评论
Prithwiraj
Prithwiraj 2023-9-15
yes I agree! Infact I have to submit the course completion certificate today at AICTE portal for completion of MVIP programme of mathwork,today is the deadline

请先登录,再进行评论。

采纳的回答

Renee Coetsee
Renee Coetsee 2023-9-15
Thank you for reporting this issue. This is a known bug and we are actively working on fixing it in the course.
In the meantime, the workaround for Task 4 to
  1. Click See Solution (left of the Submit button)
  2. Copy the entire solution from the solution script into the working script
  3. Submit Task 4
If that doesn't work, copy and paste the following code for Task 4:
% Find local maxima
maxIndices = islocalmax(pwr,"SamplePoints",t);
% Display results
figure
plot(t,pwr,"Color",[77 190 238]/255,"DisplayName","Input data")
hold on
% Plot local maxima
plot(t(maxIndices),pwr(maxIndices),"^","Color",[217 83 25]/255,...
"MarkerFaceColor",[217 83 25]/255,"DisplayName","Local maxima")
title("Number of extrema: " + nnz(maxIndices))
hold off
legend
xlabel("t")
Then in Task 5, Reset the script (left of the Submit button) and complete Task 5 normally.
  3 个评论
Image Analyst
Image Analyst 2023-9-15
If this Answer solves your original question, then could you please click the "Accept this answer" link to award the answerer with "reputation points" for their efforts in helping you? They'd appreciate it. Thanks in advance. 🙂 Note: you can only accept one answer (so pick the best one) but you can click the "Vote" icon for as many Answers as you want. Voting for an answer will also award reputation points.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by