cool
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = pi;
y_correct = '3 + 1/(7 + 1/(16))';
assert(isequal(contfractions(x),y_correct))
|
2 | Pass |
%%
x = exp(1);
y_correct = '3 + 1/(-4 + 1/(2 + 1/(5 + 1/(-2 + 1/(-7)))))';
assert(isequal(contfractions(x),y_correct))
|
3 | Pass |
%%
x = sqrt(2);
y_correct = '1 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2))))))))';
assert(isequal(contfractions(x),y_correct))
|
4 | Pass |
%%
x = (exp(1)-1)^-1;
y_correct = '1 + 1/(-2 + 1/(-3 + 1/(2 + 1/(5 + 1/(-2 + 1/(-7 + 1/(2)))))))';
assert(isequal(contfractions(x),y_correct))
|
5 | Pass |
%%
filetext = fileread('contfractions.m');
assert(isempty(strfind(filetext, 'switch')))
assert(isempty(strfind(filetext, 'case')))
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
686 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
07 - Common functions and indexing 5
314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!