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
>> syms x
>> e = [x==3 x>=2]
ans = (sym) [[x = 3 x ≥ 2]] (1×2 matrix)
So far so good, but index one of those out:
>> e(2)
ans = (sym) [[x ≥ 2]]
The result is a 1x1 Array. Compare to:
>> x >= 2
ans = (sym) x ≥ 2
We try to avoid making 1x1 Matrices in Symbolic (even though SymPy happily will) b/c of Octave double behaviour. Probably need to do something similar for Array...
The text was updated successfully, but these errors were encountered:
Consider
So far so good, but index one of those out:
The result is a 1x1 Array. Compare to:
We try to avoid making 1x1 Matrices in Symbolic (even though SymPy happily will) b/c of Octave double behaviour. Probably need to do something similar for Array...
The text was updated successfully, but these errors were encountered: