Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('your_fcn_name.m')
assert(~isempty(strfind(filetext, 'gallery')))
assert( isempty(strfind(filetext, '% gallery')))
filetext =
'function y = your_fcn_name(n)
m = floor(n/2);
a = gallery('fiedler',n);
y = or(a==m,fliplr(a)==m);
end
%This code written by profile_id 1887879
'
|
2 | Pass |
n = 5;
expected = [0 0 1 0 0
0 1 0 1 0
1 0 0 0 1
0 1 0 1 0
0 0 1 0 0];
y_correct = logical(expected)
assert(isequal(your_fcn_name(n),y_correct))
y_correct =
5×5 logical array
0 0 1 0 0
0 1 0 1 0
1 0 0 0 1
0 1 0 1 0
0 0 1 0 0
|
3 | Pass |
n = 9;
expected = [ 0 0 0 0 1 0 0 0 0
0 0 0 1 0 1 0 0 0
0 0 1 0 0 0 1 0 0
0 1 0 0 0 0 0 1 0
1 0 0 0 0 0 0 0 1
0 1 0 0 0 0 0 1 0
0 0 1 0 0 0 1 0 0
0 0 0 1 0 1 0 0 0
0 0 0 0 1 0 0 0 0]
y_correct = logical(expected)
assert(isequal(your_fcn_name(n),y_correct))
expected =
0 0 0 0 1 0 0 0 0
0 0 0 1 0 1 0 0 0
0 0 1 0 0 0 1 0 0
0 1 0 0 0 0 0 1 0
1 0 0 0 0 0 0 0 1
0 1 0 0 0 0 0 1 0
0 0 1 0 0 0 1 0 0
0 0 0 1 0 1 0 0 0
0 0 0 0 1 0 0 0 0
y_correct =
9×9 logical array
0 0 0 0 1 0 0 0 0
0 0 0 1 0 1 0 0 0
0 0 1 0 0 0 1 0 0
0 1 0 0 0 0 0 1 0
1 0 0 0 0 0 0 0 1
0 1 0 0 0 0 0 1 0
0 0 1 0 0 0 1 0 0
0 0 0 1 0 1 0 0 0
0 0 0 0 1 0 0 0 0
|
235 Solvers
753 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
464 Solvers
Piecewise linear interpolation
298 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!