Skip to content

Commit

Permalink
Update extract_coefs.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
behinger authored May 22, 2024
1 parent d49bf3f commit d747591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extract_coefs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extract_symbol(t::FunctionTerm) = extract_symbol.(t.args)
extract_symbol(t::MatrixTerm) = extract_symbol(t.terms)
extract_symbol(t::Unfold.TimeExpandedTerm) =
repeat(extract_symbol(t.term), inner = length(Unfold.colnames(t.basisfunction)))
extract_symbol(f::FormulaTerm) = vcat(extract_symbol.(f.rhs)...)
extract_symbol(f::FormulaTerm) = extract_symbol(f.rhs)
extract_symbol(t::Vector) = vcat(extract_symbol.(t)...)
extract_symbol(t::Tuple) = vcat(extract_symbol.(t)...)

Expand Down

0 comments on commit d747591

Please sign in to comment.