Problem 44846. Just another norm problem (JANP)
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
Christian Schröder
on 24 Nov 2022
You may want to add a test checking that the function actually returns vectors.
Solution Comments
Show commentsProblem Recent Solvers12
Suggested Problems
-
Find the peak 3n+1 sequence value
2564 Solvers
-
Read a column of numbers and interpolate missing data
2350 Solvers
-
1246 Solvers
-
Determine if input is a Narcissistic number
215 Solvers
-
Change the sign of even index entries of the reversed vector
634 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!