|
From: | Dmitri A. Sergatskov |
Subject: | Re: size of empty matrix |
Date: | Sat, 16 Jun 2018 20:24:16 -0500 |
Could somebody explain it to my why I get different answers callingsize(b) and "size b" when b is an empty matrix?octave:60> b=[]
b = [](0x0)
octave:61> size(b)
ans =
0 0
octave:62> size b
ans =
1 1Dmitri.
[Prev in Thread] | Current Thread | [Next in Thread] |