Why does pagemldivide not give Singular Matrix warnings?
Show older comments
The new pagemldivide function in R2022a Prerelease (I think also in Parallel Computing Toolbox) doesn't give any Singular Matrix warnings. Why is that?
>> mldivide([1,0;0,0],[1;1])
Warning: Matrix is singular to working precision.
ans =
1
Inf
>> pagemldivide([1,0;0,0],[1;1])
ans =
1
Inf
Accepted Answer
More Answers (1)
Steven Lord
on 23 Feb 2022
0 votes
Please send all questions or feedback about a Prerelease release to Technical Support rather than posting to MATLAB Answers.
Categories
Find more on Programming 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!