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(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')))
|
2980 Solvers
1327 Solvers
Longest run of consecutive numbers
1649 Solvers
Generate a string like abbcccddddeeeee
234 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!