Student sees a very strange and usual interface

조회 수: 2 (최근 30일)
Antonio Mele
Antonio Mele 2017년 10월 22일
댓글: Jeff Alderson 2018년 4월 19일
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