Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '3*x';
lower=0; upper=3;
y_correct = 0;
assert(isequal(myintegrate(x,lower,upper),y_correct))
|
2 | Pass |
x = '6*x';
lower=2; upper=6;
y_correct = 0;
assert(isequal(myintegrate(x,lower,upper),y_correct))
|
3 | Pass |
x = '2*x';
lower=0; upper=2;
y_correct = 0;
assert(isequal(myintegrate(x,lower,upper),y_correct))
|
Remove the small words from a list of words.
672 Solvers
Create a cell array out of a struct
508 Solvers
Back to basics 8 - Matrix Diagonals
782 Solvers
407 Solvers
549 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!