Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SparseMatrixIdentification.jl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ end
export getstructure

# get the percentage banded for a bandwidth of 1 and percentage sparsity
function getstructure(A::Matrix)
function getstructure(A::AbstractMatrix)::Any
percentage_banded = compute_bandedness(A, 1)
percentage_sparsity = compute_sparsity(SparseMatrixCSC(A))

Expand Down
Loading