This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
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]))
m =
-0.7812
|
2 | Pass |
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]))
m =
-0.2874
|
325 Solvers
Calculate the area of a triangle between three points
872 Solvers
530 Solvers
327 Solvers
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!