This solution is outdated. To rescore this solution, sign in.
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)
f =
2.7183
|
2 | Pass |
a = 2^18;
n = 0;
f_correct = a*exp(n);
assert(abs(approx_e(a,n)-f_correct)<.001)
f =
262144
|
3 | Pass |
a = pi;
n = pi;
f_correct = a*exp(n);
assert(abs(approx_e(a,n)-f_correct)<.001)
f =
72.6986
|
4 | Pass |
a = -exp(1);
n = exp(2);
f_correct = a*exp(n);
assert(abs(approx_e(a,n)-f_correct)<.001)
f =
-4.3987e+03
|
5 | Pass |
filetext = fileread('approx_e.m');
assert(isempty(strfind(filetext,'exp')))
assert(isempty(strfind(filetext,'str')))
assert(all(cellfun(@(z)str2num(z)==round(str2num(z)),regexp(filetext,'[0123456789.]+','match'))))
assert(isempty(regexp(filetext,'\d+e')))
|
1600 Solvers
267 Solvers
436 Solvers
1097 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!