Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
E = 0;
A = 10;
Flux_correct = 0;
assert(isequal(electric_fcn_flux(E,A),Flux_correct))
|
2 | Pass |
E = 2;
A = 10;
Flux_correct = 20;
assert(isequal(electric_fcn_flux(E,A),Flux_correct))
|
3 | Pass |
E = 5;
A = 10;
Flux_correct = 50;
assert(isequal(electric_fcn_flux(E,A),Flux_correct))
|
4 | Pass |
E = 10;
A = 10;
Flux_correct = 100;
assert(isequal(electric_fcn_flux(E,A),Flux_correct))
|
6281 Solvers
Basics: 'Find the eigenvalues of given matrix
323 Solvers
273 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
382 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!