We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 204f052 commit 5668cf2Copy full SHA for 5668cf2
README.md
@@ -457,9 +457,13 @@ the type you wish to use as the second argument to `Quantity`:
457
```julia
458
julia> using DynamicQuantities
459
460
-julia> q8 = [Quantity{Float64,FRInt8}(randn(), length=rand(-2:2)) for i in 1:1000];
+julia> R8 = Dimensions{FRInt8};
461
462
-julia> q32 = [Quantity{Float64,FRInt32}(randn(), length=rand(-2:2)) for i in 1:1000];
+julia> R32 = Dimensions{FRInt32};
463
+
464
+julia> q8 = [Quantity{Float64,R8}(randn(), length=rand(-2:2)) for i in 1:1000];
465
466
+julia> q32 = [Quantity{Float64,R32}(randn(), length=rand(-2:2)) for i in 1:1000];
467
468
julia> f(x) = @. x ^ 2 * 0.5;
469
0 commit comments