Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test 1
x = '3*x';
lower=0; upper=3;
y_correct = 0;
assert(isequal(myintegrate(x,lower,upper),y_correct))
ans =
0
|
2 | Pass |
%% test 2
x = '6*x';
lower=2; upper=6;
y_correct = 0;
assert(isequal(myintegrate(x,lower,upper),y_correct))
ans =
0
|
3 | Pass |
%% test 3
x = '2*x';
lower=0; upper=2;
y_correct = 0;
assert(isequal(myintegrate(x,lower,upper),y_correct))
ans =
0
|
894 Solvers
Make one big string out of two smaller strings
1148 Solvers
81 Solvers
Fahrenheit to Celsius converter
358 Solvers
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!