Basic question on Round function

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 Comments

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
A=[2.1 5 8.6 4.5 -2.1]; floor(A);

Sign in to comment.

Answers (2)

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 Comments

Thank you! yes i did it like you did it on the second option, with 2 lines of code
BTW it happens in CODY
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.
'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.

Sign in to comment.

Guillaume
Guillaume on 23 Oct 2015
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.

Categories

Asked:

on 23 Oct 2015

Commented:

on 23 Oct 2015

Community Treasure Hunt

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

Start Hunting!