Student sees a very strange and usual interface

2 次查看(过去 30 天)
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?

采纳的回答

Santosh Kasula
Santosh Kasula 2017-10-23
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 个评论
Santosh Kasula
Santosh Kasula 2017-10-23
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.
Jeff Alderson
Jeff Alderson 2018-4-19
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.

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by