We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
probabilities
invariantmeasure
CC @rusandris (moved your comment into a separate issue)
This might be a separate issue, but since it is related, I'll mention it here.
Why one get different number of states in the outcome space when using probabilities vs. invariantmeasure?
using DynamicalSystems henon_rule(x, p, n) = SVector{2}(1.0 - p[1]*x[1]^2 + x[2], p[2]*x[1]) henon = DeterministicIteratedMap(henon_rule, zeros(2), [1.4, 0.3]) orbit, t = trajectory(henon, 20_000; Ttr = 500) using ComplexityMeasures grid_size = 20 binning = RectangularBinning(grid_size) p_cm = probabilities(ValueBinning(binning),orbit) #100 states
which gives a 100 states.
iv = invariantmeasure(orbit,binning) P_cm,symbols = transfermatrix(iv) #101 states??
which in contrast gives 101 states, despite using the same binning.
binning
Originally posted by @rusandris in #337 (comment)
The text was updated successfully, but these errors were encountered:
binning.precise == false
TransferOperator
I thought this had to do with #328, but it seems that the problem is not that, because I can still reproduce this issue on main.
main
Sorry, something went wrong.
because I can still reproduce this issue on main
Yes, it's still there in the 3.0 release as well
is this solved? wasn't this about the usage of precise?
precise
This isn't solved. The issue was unrelated to the use of precise, or at least not entirely solved by utilizing precise.
No branches or pull requests
CC @rusandris (moved your comment into a separate issue)
Why one get different number of states in the outcome space when using
probabilities
vs.invariantmeasure
?which gives a 100 states.
which in contrast gives 101 states, despite using the same
binning
.Originally posted by @rusandris in #337 (comment)
The text was updated successfully, but these errors were encountered: