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))
a =
10
b =
2.5000e+23
c =
8.1205
z =
247.2842
|
2 | Pass |
[z a] = MyFunc();
assert(a==10);
a =
10
b =
2.5000e+23
c =
8.1205
z =
247.2842
|
3 | Pass |
[z a b] = MyFunc();
assert(b==2.5e23);
a =
10
b =
2.5000e+23
c =
8.1205
z =
247.2842
|
4 | Pass |
[z a b c] = MyFunc();
assert(c==exp(2*pi/3));
a =
10
b =
2.5000e+23
c =
8.1205
z =
247.2842
|
Return the largest number that is adjacent to a zero
3750 Solvers
201 Solvers
Determine Whether an array is empty
646 Solvers
Return the first and last character of a string
3449 Solvers
400 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!