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.3334
|
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
|
402 Solvers
129 Solvers
Matlab Basics II - Extract last 3 elements of a vector
110 Solvers
170 Solvers
Find sum of negative elements in row.
44 Solvers