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))
|
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Create a Multiplication table matrix...
281 Solvers
414 Solvers
Matlab Basics II - Count rows in a matrix
255 Solvers
305 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!