Skip to content
New issue

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

Dimensional Data v0.29 #61

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
unitdomain workaround for test_estimate
  • Loading branch information
ggebbie committed Nov 12, 2024
commit 010c0e25da9ea961a31bb4e54c0a9b97fdf66117
6 changes: 5 additions & 1 deletion test/test_estimate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,11 @@ end

Px⁻¹ = Diagonal(ustrip.(γ),[kg/g,kg*d/g,kg*d^2/g,kg*d^3/g],[g/kg,g/kg/d,g/kg/d^2,g/kg/d^3])
#x₀ = UnitfulMatrix(zeros(N).*unitdomain(Cxx⁻¹))
x₀ = zeros(N).*unitdomain(Px⁻¹)
#x₀ = zeros(N).*unitdomain(Px⁻¹)

# workaround for unitdomain issue
x₀ = zeros(N).*parent(parent(unitdomain(Px⁻¹)))

else
t = (1:M)
E =hcat(t.^0, t, t.^2, t.^3)
Expand Down
Loading