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: pyttb/tensor.py
+3-1
Original file line number
Diff line number
Diff line change
@@ -184,7 +184,9 @@ def from_function(
184
184
function_handle:
185
185
A function that can accept a shape (i.e., :class:`tuple` of
186
186
dimension sizes) and return a :class:`numpy.ndarray` of that shape.
187
-
The array returned by the function should ideally be in Fortran order. If that is not the case, an expensive reordering of the data will be required. One way to avoid this reordering is to return a 1D vector.
187
+
The array returned by the function should ideally be in Fortran order.
188
+
If that is not the case, an expensive reordering of the data will be
189
+
required. One way to avoid this reordering is to return a 1D vector.
0 commit comments