Change the type of FrequencySimulationResult.ω
from RowVector
in to just Vector
?
#24
Labels
FrequencySimulationResult.ω
from RowVector
in to just Vector
?
#24
As of Julia 1.0,
RowVector
is no longer a thing. See this issue.Instead there is a type
Transpose
,Adjoint
, or justArray{2}
. All in all, I think there is plenty of room for confusion now, and the intuitive idea of having a "lying down" vector is lost. So I suggest just usingVector
for the typeFrequencySimulationResult.ω
.The text was updated successfully, but these errors were encountered: