Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
Ef = 100;
Em = 10;
ff = 0.30;
assert(isequal(rule_of_mixtures_upper_bound(Ef,Em,ff),37))
|
2 | Pass |
Ef = 100;
Em = 10;
ff = 0.22;
assert(isequal(rule_of_mixtures_upper_bound(Ef,Em,ff),29.8))
|
3 | Pass |
Ef = 100;
Em = 10;
ff = 0.15;
assert(isequal(rule_of_mixtures_upper_bound(Ef,Em,ff),23.5))
|
4 | Pass |
Ef = 1000;
Em = 10;
ff = 0.30;
assert(isequal(rule_of_mixtures_upper_bound(Ef,Em,ff),307))
|
5 | Pass |
Ef = 1000;
Em = 10;
ff = 0.22;
assert(isequal(rule_of_mixtures_upper_bound(Ef,Em,ff),227.8))
|
6 | Pass |
Ef = 1000;
Em = 10;
ff = 0.15;
assert(isequal(rule_of_mixtures_upper_bound(Ef,Em,ff),158.5))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
781 Solvers
Flip the main diagonal of a matrix
506 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Find out sum of all elements of given Matrix
349 Solvers
154 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!