This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 1;
m_correct = 10^-10;
assert(isequal(conv_fcn_met(A),m_correct))
|
2 | Pass |
A = 0;
m_correct = 0;
assert(isequal(conv_fcn_met(A),m_correct))
|
3 | Pass |
A = 10;
m_correct = 10^-9;
assert(isequal(conv_fcn_met(A),m_correct))
|
4 | Pass |
A = 400;
m_correct = 4*10^-8 ;
assert(isequal(conv_fcn_met(A),m_correct))
|
5 | Pass |
A = 30000;
m_correct = 3*10^-6;
assert(isequal(conv_fcn_met(A),m_correct))
|
The sum of the numbers in the vector
426 Solvers
Fix the last element of a cell array
344 Solvers
273 Solvers
2143 Solvers
Write a code that will follow the equation y = x * (x + x) * x.
209 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!