Given input vector, output it's DC and AC value
Example:
input = 0 1 -1 0 ac = 0 1 -1 0 dc = 0
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers63
Suggested Problems
-
Back to basics 19 - character types
275 Solvers
-
Getting the row and column location from a matrix
301 Solvers
-
Check if number exists in vector
14418 Solvers
-
Test Problem; Create a 5x5 array containing all ones
405 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2219 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Making a judgement about AC & DC based on only four points is unreliable. Not quite as flawed as the test cases in Problem 125, but still could be improved.