Strange behaviour computing l1 norm of rows of a matrix

1 view (last 30 days)
I have a (1102,8232)-matrix B (from Data that I don't have control over).
The query
B(1102,:)
yields
ans = All zero sparse: 1×8232
However, when I compute
beta = sum(abs(B),2);
or equivalently
beta = vecnorm(B,1,2)
I get
beta(1102)
ans = (1,1) 55
On the other hand, the command
norm(B(1102,:),1)
ans = 0
works as expected.
I'm really confused what's happening here. Any help is appreciated.

Accepted Answer

Bruno Luong
Bruno Luong on 13 Aug 2020
Edited: Bruno Luong on 13 Aug 2020
Who build this sparse matrix B?
If it's build from external source it can be not-valid. I believe there is a tool on FileExchange to validate the sparse matrix, the name escapes me now.
EDIT: this command crahes my MATLAB
B = B+0
indicating this matrix has serious building flaw.
  6 Comments
Bruno Luong
Bruno Luong on 13 Aug 2020
Yeah but be aware the fixed matrix might not be correct. You better try to fix at gurobi_read or python, whichever step that is responsible for the error.

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!