Trivial...
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
n = 1;
f_correct = a*exp(n);
assert(abs(approx_e(a,n)-f_correct)<.001)
|
2 | Pass |
a = 2^18;
n = 0;
f_correct = a*exp(n);
assert(abs(approx_e(a,n)-f_correct)<.001)
|
3 | Pass |
a = pi;
n = pi;
f_correct = a*exp(n);
assert(abs(approx_e(a,n)-f_correct)<.001)
|
4 | Pass |
a = -exp(1);
n = exp(2);
f_correct = a*exp(n);
assert(abs(approx_e(a,n)-f_correct)<.001)
|
5 | Pass |
filetext = fileread('approx_e.m');
assert(isempty(strfind(filetext,'exp')))
assert(isempty(strfind(filetext,'str')))
assert(isempty(strfind(filetext,'cat')))
assert(isempty(strfind(filetext,'feval')))
assert(all(cellfun(@(z)str2num(z)==round(str2num(z)),regexp(filetext,'[0123456789.]+','match'))))
assert(isempty(regexp(filetext,'\d+e')))
|
962 Solvers
Back to basics 9 - Indexed References
392 Solvers
Volume difference between Ellipsoid and Sphere
96 Solvers
2143 Solvers
Sum the 'edge' values of a matrix
232 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!