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')))
|
4598 Solvers
337 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
construct matrix with identical rows
168 Solvers
Flip the vector from right to left
2666 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!