This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=0:0.01:1;
y=@(x)x.^2
z_correct = 0.3334
assert(abs(integralx2(x,y)-z_correct)<0.001)
y =
function_handle with value:
@(x)x.^2
z_correct =
0.3334
z =
0.3333
|
2 | Pass |
x=0:0.01:1;
y=@(x)x.^3
z_correct = 0.25
assert(abs(integralx2(x,y)-z_correct)<0.001)
y =
function_handle with value:
@(x)x.^3
z_correct =
0.2500
z =
0.2500
|
239 Solvers
402 Solvers
186 Solvers
213 Solvers
Slope of the line passing through two points
35 Solvers