필터 지우기
필터 지우기

in cody coursework i keep getting the response "Assertion failed." when i go to test the question. What am i doing wrong?

조회 수: 8 (최근 30일)
product of y and z such that the result is a 40x5 matrix?
y=linspace(2.5,10,5)'
z=ones(1,40)
z(1,1:40)=pi
y*z= 5x40 matrix=M
When I try to use the inverse x=M.'or x=z'*y' for the answer and when i go to test it i get the error:
assert(isequal(ref_output,student_output));
Assertion failed.
How do I get the correct solution?
  댓글 수: 1
Nicholas Ayres
Nicholas Ayres 2017년 6월 13일
You seem to be testing whether the two matrices are exactly the same, including all the values within the matrix. This may be your issue? Also, make sure all your variables are correctly defined. size(<your_variable>) will be the useful function.

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

채택된 답변

Guillaume
Guillaume 2017년 2월 2일
The assertion is telling you that your answer differs from the expected answer. That's all.
Now, the reason may be that your answer is indeed wrong. In which case, try harder.
But the reason could also be that you're using a slightly different method to arrive at the result resulting in minute differences in the result due to the way computer stores floating point numbers, in which case you're perfectly entitled to complain loudly to whomever set this test since they don't seem to be aware that you should never use isequal to compare floating point numbers. See for example the result of:
isequal(1.001-0.001, 1)

추가 답변 (1개)

Sally Al Khamees
Sally Al Khamees 2017년 2월 2일
편집: Sally Al Khamees 2017년 2월 3일
You cannot view any other answer beside your own on Cody Coursework. It is designed to emulate a homework assignment. You can contact the professor who has created the course to get the solution. Hope this helps

카테고리

Help CenterFile Exchange에서 Test Execution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by