Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
p= 1;
y_correct = [1];
assert(isequal( seq_wave(p),y_correct))
|
2 | Pass |
%%
p= 1;
y_correct = [2];
[~,~, a]=seq_wave(p)
assert(isequal(a ,y_correct))
a =
2
|
3 | Pass |
%%
p= 8.25;
[a,b,c]=seq_wave(p);
assert(isequal(a ,8.25))
assert(isequal(b ,8.25))
assert(isequal(c ,16.5))
|
4 | Pass |
%%
p= 3.5;
[a,b,c]=seq_wave(p);
assert(isequal(a ,3.5))
assert(isequal(b ,3.5))
assert(isequal(c ,7))
|
Solve the set of simultaneous linear equations
273 Solvers
669 Solvers
376 Solvers
Remove element(s) from cell array
372 Solvers
Cumulative product of a vector
208 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!