Student sees a very strange and usual interface

A student sent me this image from what he/she sees in Cody Coursework. It's only this student, and only this assignment. There is a weird "Code to call your function" window that should not be there. This is an assignment in which students have to write a function. The student was seeing this on a Windows pc, but not on a iPad. Not sure what this is and how to fix it, any suggestions?

 Accepted Answer

The student might be using version-2 of Cody Coursework on Windows PC and version-1 on iPad. "Code to call your function" is a new feature is v2. Below is the brief explanation of how "Code to call your function" works
1) Student can code his function in "Your Function" code editor area. Lets assume the student wants to test if a number is odd or even, the below code goes into "Your Function" area
function tf = is_it_even(n)
ans = mod(n, 2)
if ans == 0
tf = true;
else
tf = false;
end
end
2) and can test the above function by calling in "Code to call your function" and clicking on "Run Function" button. For the above function, the student can write the below code "Code to call your function" area
is_it_even(5)

4 Comments

thanks. Is there any way to make sure that students always access v1? And apart from this, do the submissions appear all in each version even if some students have used v1 and some have used v2?
Sorry scratch that. Here is the thing: my course was set up in v1. Most students are accessing it with v1, but a couple of students submitted their problem sets on v2. When I download the submissions, in any format, those 2 submissions are empty, however they passed all the tests. When I log in in v2, I cannot access the submissions (the platform gives me an error message). This looks like a bug to me. Is there any way to recover the submissions of these two students?
Could you reach out to support@mathworks.com and share details about students and the course, we can try to take care of the migration?
We are working on streamlining the workflow, so that students don't run into these issues in the future.
With the January 2018 release of Cody Coursework, all users (students and instructors) will now see the same version of the product, with no effort required in changing URLs or paths.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!