Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=1;
b=2;
c=1;
t=3;
s=15;
y=SolveEquation(a,b,c,t,s)
y_correct = [ 0.5700 , -2.5700]
tolerance = 1e-4;
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
y =
0.5700 -2.5700
y_correct =
0.5700 -2.5700
|
2 | Pass |
a=1;
b=2;
c=2;
t=exp(1);
s=exp(1);
y=SolveEquation(a,b,c,t,s)
y_correct = [ -1 , -1]
tolerance = 1e-4;
assert(abs(y(1)-y_correct(1))<tolerance)
assert(abs(y(2)-y_correct(2))<tolerance)
y =
-1 -1
y_correct =
-1 -1
|
Find the longest sequence of 1's in a binary sequence.
2446 Solvers
Getting the row and column location from a matrix
192 Solvers
Try 1.5.4: Celsius to Fahrenheit
486 Solvers
1781 Solvers
80 Solvers