Basic question on Round function

1 次查看(过去 30 天)
Yossi Sourugeon
Yossi Sourugeon 2015-10-23
评论: Guillaume 2015-10-23
Hello, I got homework in my course Use the floor function on vector A
So they gave me a vector and everything and here hot it looks like A=[2.1 5 8.6 4.5 -2.1] floor (A)
So I run it and it says: Fail This hidden test is visible only to the instructors.
Assertion failed.
why??? It also happens when I use round and ceil
Thanks!
  2 个评论
Guillaume
Guillaume 2015-10-23
Have you asssigned the output to the correct variable?
Post the exact code for the entire function you've written rather than letting us guess
Yossi Sourugeon
Yossi Sourugeon 2015-10-23
A=[2.1 5 8.6 4.5 -2.1]; floor(A);

请先登录,再进行评论。

回答(2 个)

Andreas Goser
Andreas Goser 2015-10-23
An assertion on such a simple command looks like a software issue and not your fault. But to be on the safe side, you do excute this as two separate commands, rigtht? or at least with a semicolon?
A=[2.1 5 8.6 4.5 -2.1]; floor (A)
Or
A=[2.1 5 8.6 4.5 -2.1]
floor (A)
  4 个评论
Steven Lord
Steven Lord 2015-10-23
My guess is that "Assertion failed." means "assertion" in the xUnit sense or the MATLAB assert function sense rather than the C or C++ function sense.
Guillaume
Guillaume 2015-10-23
'Assertion failed' means that the student's code failed to pass the test set up by the tutor on cody coursework.
In this particular code, the tutor does not want the student to see the actual test. A typical cody test consists would look like this:
%set-up inputs to student's function or script, e.g.:
A=[2.1 5 8.6 4.5 -2.1];
%call student script/function
result = somepredefinedname(A);
%check that the student's code does what it should
assert(isequal(result, [2 5 8 4 -2]));
The student only has to enter his code for somepredefinedname in a text box.

请先登录,再进行评论。


Guillaume
Guillaume 2015-10-23
Are you supposed to create a script of a function? If a function where is the function declaration?
In either case, you're not assigning the result of floor to anything. The test in cody is going to look for the result of your answer in a variable. Assign your result to that variable.

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by