Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=10;
b=2.5e23;
c=exp(2*pi/3);
ref = (log(c/b^a)*sin(a*pi/3))/abs(c-a);
user = MyFunc();
assert(isequal(user,ref))
|
2 | Pass |
[z a] = MyFunc();
assert(a==10);
|
3 | Pass |
[z a b] = MyFunc();
assert(b==2.5e23);
|
4 | Pass |
[z a b c] = MyFunc();
assert(c==exp(2*pi/3));
|
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Find nearest prime number less than input number
268 Solvers
190 Solvers
413 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!