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
Is it possible to use getvalue(x[a,b,c]) where a, b and c are vectors? Or can I only retrieve such values through for loops? For example, say that a=[1 2], b=[13 36 48], c=all possible nodes in the 3rd dimension -- in matlab it would be :
Thanks!
The text was updated successfully, but these errors were encountered:
If x is plain Julia array with 1-based indices then you're free use Julia syntax to take slices. Slicing other kinds of arrays is not yet supported. See #851 and #643.
Hi,
Is it possible to use
getvalue(x[a,b,c])
wherea
,b
andc
are vectors? Or can I only retrieve such values through for loops? For example, say thata=[1 2]
,b=[13 36 48]
,c=
all possible nodes in the 3rd dimension -- in matlab it would be :Thanks!
The text was updated successfully, but these errors were encountered: