Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
y_correct = 1;
assert(isequal(your_fcn_name,y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In your_fcn_name at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
2 | Pass |
%%
y_correct = 1:100;
assert(isequal(your_fcn_name,y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In your_fcn_name at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
3 | Pass |
%%
y_correct = rand(100);
assert(isequal(your_fcn_name,y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In your_fcn_name at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
4 | Pass |
%%
y_correct = randi(100);
assert(isequal(your_fcn_name,y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In your_fcn_name at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
5 | Pass |
%%
y_correct = 'lol';
assert(isequal(your_fcn_name,y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In your_fcn_name at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
54193 Solvers
Count from 0 to N^M in base N.
220 Solvers
random picture with random colours
138 Solvers
Find out missing number from a vector of 9 elements
245 Solvers
2142 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!