You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/manual/types.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,9 @@ evaluate(expr)
86
86
```
87
87
88
88
!!! warning
89
-
Julia's broadcasting, using the `.` operator should be avoided. The expression `-log(1.0 .+ A * x)` will fail while `-log(1.0 + A * x)` will be correctly encoded.
89
+
Avoid using Julia's broadcasting (the `.` operator). As an example, the
90
+
expression `-log(1.0 .+ A * x)` will fail while `-log(1.0 + A * x)` will
0 commit comments