This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
clf;
t = linspace(0,15,400);
y = exp(-0.5*t).*cos(2*pi.*t);
m = plot_cos(y, t);
f = gcf;
assert(isequal([f.Children.Children.Color], [1 0 0 0 0 1]))
assert(strcmp([f.Children.Children.LineStyle], 'none--'))
assert(strcmp([f.Children.Children.Marker],'*none'))
assert(isequal([f.Children.Children.YData],[m, y]))
a =
0.4887
b =
-0.7812
m =
2×1 Line array:
Line
Line
|
2 | Fail |
clf;
t = linspace(2,5,100);
y = exp(-0.5*t).*cos(2*pi.*t);
m = plot_cos(y, t);
f = gcf;
assert(isequal([f.Children.Children.Color], [1 0 0 0 0 1]))
assert(strcmp([f.Children.Children.LineStyle], 'none--'))
assert(strcmp([f.Children.Children.Marker],'*none'))
assert(isequal([f.Children.Children.YData],[m, y]))
a =
2.4848
b =
-0.2874
m =
2×1 Line array:
Line
Line
|
Return the largest number that is adjacent to a zero
3116 Solvers
1936 Solvers
3652 Solvers
262 Solvers
Check that number is whole number
274 Solvers