Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
Q_PS=0;
T=0;
y_correct = 0;
assert(isequal(T_FF(Q_PS,T),y_correct))
ans =
0
|
2 | Pass |
%%
Q_PS=1;
T=0;
y_correct = 1;
assert(isequal(T_FF(Q_PS,T),y_correct))
ans =
1
|
3 | Pass |
%%
Q_PS=0;
T=1;
y_correct = 1;
assert(isequal(T_FF(Q_PS,T),y_correct))
ans =
1
|
4 | Pass |
%%
Q_PS=1;
T=1;
y_correct = 0;
assert(isequal(T_FF(Q_PS,T),y_correct))
ans =
0
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
413 Solvers
241 Solvers
414 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!