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
|
19330 Solvers
Read a column of numbers and interpolate missing data
1235 Solvers
480 Solvers
373 Solvers
1159 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!