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 5842366 commit c9fd751Copy full SHA for c9fd751
src/blosc2/lazyexpr.py
@@ -3028,11 +3028,11 @@ def lazyexpr(
3028
[1.875 2.5 3.125]
3029
[3.75 4.375 5. ]]
3030
>>> b1 = blosc2.asarray(b)
3031
- >>> expr = 'a1 * b1 + 2'
+ >>> expr = 'a * b + 2'
3032
>>> operands = { 'a': a1, 'b': b1 }
3033
>>> lazy_expr = blosc2.lazyexpr(expr, operands=operands)
3034
>>> f"Lazy expression created: {lazy_expr}"
3035
- Lazy expression created: a1 * b1 + 2
+ Lazy expression created: a * b + 2
3036
>>> lazy_expr[:]
3037
[[ 2. 2.390625 3.5625 ]
3038
[ 5.515625 8.25 11.765625]
0 commit comments