Even though i have given input as t for x in local extrema signal measurements it still shows error as x input is incorrect.

조회 수: 2 (최근 30일)
  댓글 수: 2
dpb
dpb 2023년 9월 15일
편집: dpb 2023년 9월 15일
Wonder if they could follow the hints/correct solution to get by and go on...???

댓글을 달려면 로그인하십시오.

답변 (1개)

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.
  댓글 수: 2
Purushotham
Purushotham 2023년 9월 15일
Thank you so much without your help i wouldnt have recieved a certificate from AICTE from india thank you very much this is the only error that was stopping me from getting the certificate this was the last day of submission , so yes thank you take care of yourself
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.

댓글을 달려면 로그인하십시오.

카테고리

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