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]))
|
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]))
|
251 Solvers
Check if number exists in vector
4470 Solvers
171 Solvers
Rounding off numbers to n decimals
1051 Solvers
202 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!