Task:
Implement a function that takes a square matrix A and returns
a nonzero vector yc which minimizes
abs(norm(A*y,1)-norm(A,1)*norm(y,1))
and a nonzero vector yr which minimizes
abs(norm(A*y,inf)-norm(A,inf)*norm(y,inf))
Example
if A=eye(3), a possible solution:
yc=[1 0 0]' yr=[1 -1 1]'
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers12
Suggested Problems
-
2538 Solvers
-
Back to basics 4 - Search Path
382 Solvers
-
Remove the two elements next to NaN value
703 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
399 Solvers
-
Is this triangle right-angled?
6391 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
You may want to add a test checking that the function actually returns vectors.