Grader says answer Verified in Reference Solution is wrong

4 ビュー (過去 30 日間)
Tonie van Dam
Tonie van Dam 2021 年 9 月 17 日
編集済み: Cris LaPierre 2022 年 4 月 4 日
% define the limits of the for loop
forbeg=1;
forend=5;
for i = forbeg:forend
% Compute velocity (m/s) for each row
U = manning(n(i),S(i),B(i),H(i));
%output input and output
fprintf('%8.3f %8.3f %6d %8.2f %8.3f \n', n(i),S(i),B(i),H(i),U)
end
When I try to validate this reference solution testing the value of the variable forend, I get the errror
'Unable to resolve the name referenceVariables.forend'
Here is the code for testing the function:
assessVariableEqual('forend', referenceVariables.forend,toleranceAbsolute,0.0001);

回答 (1 件)

Cris LaPierre
Cris LaPierre 2021 年 9 月 18 日
編集済み: Cris LaPierre 2022 年 4 月 4 日
It doesn't appear that you've shared all your code, as I get an error about n being undefined. Obviously, that will be true for S, B, H and U as well. I'll assume they are actually defined in your code.
Yout name-value pair for tolerance is incorrect as well. The correct name is AbsoluteTolerance. However, since you are just applying the default tolerance of +/- 0.0001, it is actually unnecessary (unless you only want to apply an absolute tolerance and ignore relative tolerance).
Once I simplify everything to be just a test for forend, it works just fine. If you are still having the same issue, can you please share all of your code?
% reference solution
forend=5;
% MATLAB Code assessment
assessVariableEqual('forend', referenceVariables.forend);
Here's a screenshot of the result of validating the simplified problem in Grader.

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by