Skip to content

sedumi:function handle problem in minpsdeig.m #64

@crucis0

Description

@crucis0

in minpsdeig.m (line 70)

sedumi/minpsdeig.m

Lines 66 to 74 in 2996306

XX = reshape(XX,ki,ki);
XX = XX + XX';
if ki > 500
if nnz(XX) < 0.1 * numel(XX), XX = sparse(XX); end
[v,eigv(i),flag] = eigs(XX,1,'SA',struct('issym',true)); %#ok
if flag, eigv(i) = min(eig(XX)); end
else
eigv(i) = min(eig(XX));
end

there may be an issue in function eigs(XX,1,,‘SA'......)
matlab warn that XX is not a function handle.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions