Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1881;y_correct = 30;
assert(isequal(yearraey(x),y_correct))
|
2 | Pass |
x = 2014;y_correct = 1;
assert(isequal(yearraey(x),y_correct))
|
3 | Pass |
x = 2015;y_correct = 0;
assert(isequal(yearraey(x),y_correct))
|
4 | Pass |
x = 606;y_correct = 27;
assert(isequal(yearraey(x),y_correct))
|
5 | Pass |
x = 6006;y_correct = 71;
assert(isequal(yearraey(x),y_correct))
|
6 | Pass |
x = 60006;y_correct = 369;
assert(isequal(yearraey(x),y_correct))
|
7 | Pass |
k=zeros(1,15);
for n=1:15
y=2^n+2;
k(n)=yearraey(y);
end
y_correct=[1 1 5 3 11 7 23 15 47 31 95 63 191 127 383];
assert(isequal(k,y_correct))
|
How many trades represent all the profit?
520 Solvers
360 Solvers
Check that number is whole number
1070 Solvers
Matlab Basics - Convert a row vector to a column vector
419 Solvers
1172 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!